Changeset 6dd4b20ec2414cf4f24a045d7cc587b0337ba67d

Show
Ignore:
Timestamp:
18/08/07 02:13:55 (1 year ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1187396035 +0000
git-parent:

[7837da55363c2f74ee719392e0530e092c1d6a50]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1187396035 +0000
Message:

(oops).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/playlist/item.c

    r7837da5 r6dd4b20  
    6565    if( !p_child_in_category ) 
    6666    { 
    67         b_play = b_play && p_item_in_category == p_playlist->status.p_item; 
    68  
    6967        /* Then, transform to a node if needed */ 
    7068        p_item_in_category = playlist_ItemFindFromInputAndRoot( 
     
    7674            /* Item may have been removed */ 
    7775            PL_UNLOCK; 
    78             return 
    79         } 
     76            return; 
     77        } 
     78 
     79        b_play = b_play && p_item_in_category == p_playlist->status.p_item; 
    8080 
    8181        /* If this item is already a node don't transform it */ 
     
    170170int playlist_ItemDelete( playlist_item_t *p_item ) 
    171171{ 
    172     uninstall_input_item_observer( p_item->p_playlist, p_item->p_input ); 
     172    uninstall_input_item_observer( p_item, p_item->p_input ); 
    173173 
    174174    vlc_gc_decref( p_item->p_input );