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
fa5c2922
Commit
fa5c2922
authored
May 04, 2016
by
Hannes Domani
Committed by
Petri Hintukainen
May 05, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bluray: fix memory leak
parent
89f3b017
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/access/bluray.c
modules/access/bluray.c
+1
-1
No files found.
modules/access/bluray.c
View file @
fa5c2922
...
...
@@ -211,7 +211,7 @@ struct subpicture_updater_sys_t
static
void
unref_subpicture_updater
(
subpicture_updater_sys_t
*
p_sys
)
{
vlc_mutex_lock
(
&
p_sys
->
lock
);
int
refs
=
p_sys
->
ref_cnt
--
;
int
refs
=
--
p_sys
->
ref_cnt
;
p_sys
->
p_overlay
=
NULL
;
vlc_mutex_unlock
(
&
p_sys
->
lock
);
...
...
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