Changeset 1d1d48dc4814b98578e6717285466e6b2f134eb5

Show
Ignore:
Timestamp:
03/11/07 00:11:00 (1 year ago)
Author:
Jean-Paul Saman <jpsaman@videolan.org>
git-committer:
Jean-Paul Saman <jpsaman@videolan.org> 1173568260 +0000
git-parent:

[67da4884c3b2934ce028b9c437f23b3a5cfc9990]

git-author:
Jean-Paul Saman <jpsaman@videolan.org> 1173568260 +0000
Message:

assert if p_current is NULL, it should be valid

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/misc/playlist/m3u.c

    rdc7a9d0 r1d1d48d  
    5252    { 
    5353        playlist_item_t *p_current = p_root->pp_children[i]; 
    54         if( !p_current ) 
    55             continue; 
     54        assert( p_current ); 
    5655 
    5756        if( p_current->i_flags & PLAYLIST_SAVE_FLAG ) 
     
    120119    return VLC_SUCCESS; 
    121120} 
    122