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

Fix object leak (but not unsafe item access)

parent 12265bc7
...@@ -679,6 +679,7 @@ static int Demux( demux_t *p_demux ) ...@@ -679,6 +679,7 @@ static int Demux( demux_t *p_demux )
p_parent_input->i_type = ITEM_TYPE_NET; p_parent_input->i_type = ITEM_TYPE_NET;
vlc_mutex_unlock( &p_parent_input->lock ); vlc_mutex_unlock( &p_parent_input->lock );
vlc_object_release( p_input );
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
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