]> git.sesse.net Git - vlc/commitdiff
Patch by Jilles Tjoelker. Fixes crash in playlist due to negative index in playlist...
authorJean-Paul Saman <jpsaman@videolan.org>
Thu, 13 Dec 2007 16:39:33 +0000 (16:39 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Thu, 13 Dec 2007 16:39:33 +0000 (16:39 +0000)
src/playlist/control.c

index 6b70f2dd49a8177cd6704e16e9565f7ab7a49a25..6de8b3838824b24169f04d0986ca26dbba20232a 100644 (file)
@@ -386,12 +386,14 @@ playlist_item_t * playlist_NextItem( playlist_t *p_playlist )
         else
             p_playlist->i_current_index = -1;
 
-        if( p_playlist->current.i_size && i_skip > 0 )
+        if( p_playlist->current.i_size && (i_skip > 0) )
         {
+            if( p_playlist->i_current_index < -1 )
+                p_playlist->i_current_index = -1;
             for( i = i_skip; i > 0 ; i-- )
             {
                 p_playlist->i_current_index++;
-                if( p_playlist->i_current_index == p_playlist->current.i_size )
+                if( p_playlist->i_current_index >= p_playlist->current.i_size )
                 {
                     PL_DEBUG( "looping - restarting at beginning of node" );
                     p_playlist->i_current_index = 0;
@@ -400,12 +402,12 @@ playlist_item_t * playlist_NextItem( playlist_t *p_playlist )
             p_new = ARRAY_VAL( p_playlist->current,
                                p_playlist->i_current_index );
         }
-        else if( p_playlist->current.i_size && i_skip < 0 )
+        else if( p_playlist->current.i_size && (i_skip < 0) )
         {
             for( i = i_skip; i < 0 ; i++ )
             {
                 p_playlist->i_current_index--;
-                if( p_playlist->i_current_index == -1 )
+                if( p_playlist->i_current_index <= -1 )
                 {
                     PL_DEBUG( "looping - restarting at end of node" );
                     p_playlist->i_current_index = p_playlist->current.i_size-1;