Commit 222cceba authored by Rémi Duraffort's avatar Rémi Duraffort

Fix #2720 for master also. Finally that's not an hack as the code is build to

stop the playlist just after removing the playing item (so that's ok to stop
the PL even when it's empty).

(cherry picked from commit be1f4305f1203ccf5acc402fd2cc80dde3f5b1cd)
Signed-off-by: default avatarRémi Duraffort <ivoire@videolan.org>
parent 723515cd
......@@ -104,7 +104,7 @@ static int PlaylistVAControl( playlist_t * p_playlist, int i_query, va_list args
if( !vlc_object_alive( p_playlist ) )
return VLC_EGENERIC;
if( playlist_IsEmpty( p_playlist ) )
if( playlist_IsEmpty( p_playlist ) && i_query != PLAYLIST_STOP )
return VLC_EGENERIC;
switch( i_query )
......
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