Commit ef3e359a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Wakes an object when it is being killed

parent f02445b5
......@@ -450,6 +450,7 @@ void __vlc_object_kill( vlc_object_t *p_this )
{
vlc_mutex_lock( &p_this->object_lock );
p_this->b_die = VLC_TRUE;
vlc_cond_signal( &p_this->object_wait );
vlc_mutex_unlock( &p_this->object_lock );
}
......
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