Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
4c8fb0de
Commit
4c8fb0de
authored
Sep 10, 2005
by
Rémi Denis-Courmont
Browse files
Fix psz_userdir memleak
(patch contributed by Brian Robb)
parent
5c834978
Changes
2
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
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