[vlc-commits] Fix memory leak
Rémi Denis-Courmont
git at videolan.org
Mon Feb 7 18:07:46 CET 2011
vlc/vlc-1.1 | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Oct 17 13:30:45 2010 +0300| [e2d2ff1098c754a179f68c8e0aa7710353fff29f] | committer: Rémi Denis-Courmont
Fix memory leak
(cherry picked from commit 82f06bd0e7d0112a8448914e2fddec771f35792d)
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=e2d2ff1098c754a179f68c8e0aa7710353fff29f
---
src/libvlc-module.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/libvlc-module.c b/src/libvlc-module.c
index e6d8e14..9d45db3 100644
--- a/src/libvlc-module.c
+++ b/src/libvlc-module.c
@@ -1646,7 +1646,7 @@ vlc_module_begin ()
add_string( "x11-display", NULL, NULL,
DISPLAY_TEXT, DISPLAY_LONGTEXT, true )
add_deprecated_alias( "xvideo-display" ) /* deprecated since 1.1.0 */
- add_deprecated_alias( "glx-display" )
+ //add_deprecated_alias( "glx-display" ) cannot have more than one
add_bool( "xlib", true, NULL, "", "", true )
change_private ()
add_bool( "drop-late-frames", 1, NULL, DROP_LATE_FRAMES_TEXT,
More information about the vlc-commits
mailing list