Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
4c8fb0de
Commit
4c8fb0de
authored
Sep 10, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix psz_userdir memleak
(patch contributed by Brian Robb)
parent
5c834978
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
THANKS
THANKS
+1
-1
src/libvlc.c
src/libvlc.c
+6
-0
No files found.
THANKS
View file @
4c8fb0de
...
...
@@ -21,7 +21,7 @@ Benjamin Mironer <bmironer at noos.fr> - Mac OS X fixes
Benoit Steiner <benny at via.ecp.fr> - MPEG system input, network input
Bill Eldridge <bill at rfa.org> - documentation
Bob Maguire <maguirer at rjmaguire dot com> - addition of some controls to the OSX interface
Brian Robb <vascy at hotmail dot com> - win32 CD/DVD drive detection in wx
Brian Robb <vascy at hotmail dot com> - win32 CD/DVD drive detection in wx
, bug fixes
Brieuc Jeunhomme <bbp at via.ecp.fr> - bug fixes
Bruno Vella <allevb at tin.it> - Italian localization
Carlo Calabr <murray at via.ecp.fr> - Italian localization
...
...
src/libvlc.c
View file @
4c8fb0de
...
...
@@ -988,6 +988,12 @@ int VLC_Destroy( int i_object )
p_vlc
->
psz_homedir
=
NULL
;
}
if
(
p_vlc
->
psz_userdir
)
{
free
(
p_vlc
->
psz_userdir
);
p_vlc
->
psz_userdir
=
NULL
;
}
if
(
p_vlc
->
psz_configfile
)
{
free
(
p_vlc
->
psz_configfile
);
...
...
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