Commit b1a9a82e authored by Ilkka Ollakka's avatar Ilkka Ollakka

small fix for http-streaming, don't set b_die to true in beginning if
object is alive.
parent 7d020526
......@@ -2035,7 +2035,7 @@ static void httpd_HostThread( httpd_host_t *host )
vlc_object_lock( host );
evfd = vlc_object_waitpipe( VLC_OBJECT( host ) );
b_die = vlc_object_alive( host );
b_die = !vlc_object_alive( host );
vlc_object_unlock( host );
while( !b_die )
......
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