Commit c2bb7bf0 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

input: No need to playlist_Signal() on error now that the playlist receive state changed events.

parent 4d6512f5
......@@ -499,15 +499,6 @@ static int Run( input_thread_t *p_input )
/* If we failed, wait before we are killed, and exit */
p_input->b_error = true;
/* FIXME: we don't want to depend on the playlist */
playlist_t * p_playlist = vlc_object_find( p_input,
VLC_OBJECT_PLAYLIST, FIND_PARENT );
if( p_playlist )
{
playlist_Signal( p_playlist );
vlc_object_release( p_playlist );
}
Error( p_input );
/* Tell we're dead */
......
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