Commit 6678167c authored by Olivier Aubert's avatar Olivier Aubert

mediacontrol-plugin.c: removed superfluous vlc_release()

parent 1bb3f90f
......@@ -11,12 +11,16 @@ mediacontrol_Instance* mediacontrol_new( char** args, mediacontrol_Exception *ex
void
mediacontrol_exit( mediacontrol_Instance *self )
{
/*
vlc_object_release( self->p_playlist );
*/
vlc_mutex_lock( &self->p_intf->change_lock );
self->p_intf->b_die = 1;
vlc_mutex_unlock( &self->p_intf->change_lock );
/*
vlc_object_release( self->p_intf );
vlc_object_release( self->p_vlc );
*/
}
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