Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
2a6ebe69
Commit
2a6ebe69
authored
Aug 12, 2013
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bluray: fix overlay memleaks
parent
aecd8612
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
modules/access/bluray.c
modules/access/bluray.c
+3
-2
No files found.
modules/access/bluray.c
View file @
2a6ebe69
...
...
@@ -639,6 +639,7 @@ static void blurayCleanOverlayStruct(bluray_overlay_t *);
static
void
subpictureUpdaterDestroy
(
subpicture_t
*
p_subpic
)
{
blurayCleanOverlayStruct
(
p_subpic
->
updater
.
p_sys
->
p_overlay
);
free
(
p_subpic
->
updater
.
p_sys
);
}
/*****************************************************************************
...
...
@@ -685,7 +686,7 @@ static void blurayCleanOverlayStruct(bluray_overlay_t *p_overlay)
* Don't delete it again from here!
*/
vlc_mutex_destroy
(
&
p_overlay
->
lock
);
subpicture_region_Delete
(
p_overlay
->
p_regions
);
subpicture_region_
Chain
Delete
(
p_overlay
->
p_regions
);
free
(
p_overlay
);
}
...
...
@@ -697,7 +698,7 @@ static void blurayCloseAllOverlays(demux_t *p_demux)
if
(
!
p_sys
->
p_vout
)
return
;
for
(
int
i
=
0
;
i
<
0
;
i
++
)
{
for
(
int
i
=
0
;
i
<
MAX_OVERLAY
;
i
++
)
{
if
(
p_sys
->
p_overlays
[
i
]
!=
NULL
)
{
vout_FlushSubpictureChannel
(
p_sys
->
p_vout
,
p_sys
->
p_overlays
[
i
]
->
p_pic
->
i_channel
);
...
...
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