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
cbe2c267
Commit
cbe2c267
authored
Dec 17, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Memory leaks
parent
3655c1c6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
src/config/core.c
src/config/core.c
+1
-0
src/modules/entry.c
src/modules/entry.c
+3
-0
No files found.
src/config/core.c
View file @
cbe2c267
...
...
@@ -544,6 +544,7 @@ void config_Free( module_t *p_module )
free
(
p_item
->
psz_name
);
free
(
p_item
->
psz_text
);
free
(
p_item
->
psz_longtext
);
free
(
p_item
->
psz_oldname
);
if
(
IsConfigStringType
(
p_item
->
i_type
))
{
...
...
src/modules/entry.c
View file @
cbe2c267
...
...
@@ -349,7 +349,10 @@ int vlc_config_set (module_config_t *restrict item, int id, ...)
item
->
ppsz_list_text
=
dtext
;
}
else
{
free
(
dtext
);
item
->
ppsz_list_text
=
NULL
;
}
item
->
i_list
=
len
;
ret
=
0
;
...
...
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