Skip to content
Snippets Groups Projects
Commit 33835542 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

Remove useless assignation

parent 4ae0ca4d
No related branches found
No related tags found
No related merge requests found
......@@ -191,9 +191,9 @@ static void ResetCurrentlyPlaying( playlist_t *p_playlist,
PLI_NAME( p_sys->status.p_node ) );
ARRAY_RESET( p_playlist->current );
p_playlist->i_current_index = -1;
for( playlist_item_t *p_next = NULL; ; )
{
/** FIXME: this is *slow* */
for( ;; )
{ /** FIXME: this is *slow* */
playlist_item_t *p_next;
p_next = playlist_GetNextLeaf( p_playlist,
p_sys->status.p_node,
p_next, true, false );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment