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

Fix

parent 952d118d
......@@ -819,7 +819,7 @@ void __vlc_object_release( vlc_object_t *p_this )
for (held_list_t *hlcur = vlc_threadvar_get (&held_objects),
*hlprev = NULL;
hlcur != NULL;
hlcur = hlcur->next)
hlprev = hlcur, hlcur = hlcur->next)
{
if (hlcur->obj == p_this)
{
......
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