Commit 2720461a authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

media_list_player: Fix a warning that indicated a true mistake.

parent aafa45bd
...@@ -43,7 +43,7 @@ get_next_path( libvlc_media_list_player_t * p_mlp ) ...@@ -43,7 +43,7 @@ get_next_path( libvlc_media_list_player_t * p_mlp )
if ( !p_mlp->current_playing_item_path ) if ( !p_mlp->current_playing_item_path )
{ {
if( !libvlc_media_list_count( p_mlp, NULL ) ) if( !libvlc_media_list_count( p_mlp->p_mlist, NULL ) )
return NULL; return NULL;
return libvlc_media_list_path_with_root_index(0); return libvlc_media_list_path_with_root_index(0);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment