Commit 7def690c authored by Rémi Duraffort's avatar Rémi Duraffort

Delete a test which is always true.

parent 7b7da74c
......@@ -319,10 +319,7 @@ check_input:
* - Request, running requested -> start new item
* - Request, stopped requested -> collect garbage
*/
if( (!p_playlist->request.b_request &&
p_playlist->status.i_status != PLAYLIST_STOPPED) ||
( p_playlist->request.b_request &&
p_playlist->request.i_status != PLAYLIST_STOPPED ) )
if( p_playlist->request.i_status != PLAYLIST_STOPPED )
{
msg_Dbg( p_playlist, "starting new item" );
p_item = playlist_NextItem( p_playlist );
......
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