Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
457
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
7fecb1e1
Commit
7fecb1e1
authored
17 years ago
by
Pierre d'Herbemont
Browse files
Options
Downloads
Patches
Plain Diff
control: Fix multiple event_manager leaks.
parent
257fdd4a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/control/media_library.c
+1
-0
1 addition, 0 deletions
src/control/media_library.c
src/control/media_list_player.c
+1
-0
1 addition, 0 deletions
src/control/media_list_player.c
with
2 additions
and
0 deletions
src/control/media_library.c
+
1
−
0
View file @
7fecb1e1
...
...
@@ -67,6 +67,7 @@ void libvlc_media_library_release( libvlc_media_library_t * p_mlib )
if
(
p_mlib
->
i_refcount
>
0
)
return
;
libvlc_event_manager_release
(
p_mlib
->
p_event_manager
);
free
(
p_mlib
);
}
...
...
This diff is collapsed.
Click to expand it.
src/control/media_list_player.c
+
1
−
0
View file @
7fecb1e1
...
...
@@ -221,6 +221,7 @@ libvlc_media_list_player_new( libvlc_instance_t * p_instance,
**************************************************************************/
void
libvlc_media_list_player_release
(
libvlc_media_list_player_t
*
p_mlp
)
{
libvlc_event_manager_release
(
p_mlib
->
p_event_manager
);
free
(
p_mlp
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment