Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
6678167c
Commit
6678167c
authored
Sep 23, 2004
by
Olivier Aubert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mediacontrol-plugin.c: removed superfluous vlc_release()
parent
1bb3f90f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
modules/control/corba/mediacontrol-plugin.c
modules/control/corba/mediacontrol-plugin.c
+7
-3
No files found.
modules/control/corba/mediacontrol-plugin.c
View file @
6678167c
...
...
@@ -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_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
);
/*
vlc_object_release( self->p_intf );
vlc_object_release( self->p_vlc );
*/
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment