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

interface.c: Default b_should_run_on_first_thread to false to be sure. (as per funman's request).

parent 8939b3e8
......@@ -286,6 +286,8 @@ static void RunInterface( intf_thread_t *p_intf )
vlc_mutex_lock( &p_intf->object_lock );
p_intf->b_die = VLC_FALSE; /* FIXME */
p_intf->b_dead = VLC_FALSE;
p_intf->b_should_run_on_first_thread = VLC_FALSE;
vlc_mutex_unlock( &p_intf->object_lock );
p_intf->p_module = module_Need( p_intf, "interface", psz_intf, 0 );
......
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