Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
fe657df0
Commit
fe657df0
authored
Jan 17, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't leak message contexts at end of threads
parent
973a412d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
src/misc/messages.c
src/misc/messages.c
+8
-1
No files found.
src/misc/messages.c
View file @
fe657df0
...
...
@@ -61,6 +61,13 @@ typedef struct
char
*
psz_message
;
}
msg_context_t
;
static
void
cleanup_msg_context
(
void
*
data
)
{
msg_context_t
*
ctx
=
data
;
free
(
ctx
->
psz_message
);
free
(
ctx
);
}
static
vlc_threadvar_t
msg_context
;
static
uintptr_t
banks
=
0
;
...
...
@@ -117,7 +124,7 @@ void msg_Create (libvlc_int_t *p_libvlc)
vlc_mutex_lock
(
&
msg_stack_lock
);
if
(
banks
++
==
0
)
vlc_threadvar_create
(
&
msg_context
,
NULL
);
vlc_threadvar_create
(
&
msg_context
,
cleanup_msg_context
);
vlc_mutex_unlock
(
&
msg_stack_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