[vlc-commits] Qt: fix memory leak
Hannes Domani
git at videolan.org
Fri Jul 3 21:03:42 CEST 2015
vlc | branch: master | Hannes Domani <ssbssa at yahoo.de> | Fri Jul 3 14:34:01 2015 +0200| [1637cd913030e5fccf5f5aad37ad0dc22588f8e3] | committer: Rémi Denis-Courmont
Qt: fix memory leak
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1637cd913030e5fccf5f5aad37ad0dc22588f8e3
---
modules/gui/qt4/components/preferences_widgets.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/gui/qt4/components/preferences_widgets.cpp b/modules/gui/qt4/components/preferences_widgets.cpp
index 39465f2..bc6b6cc 100644
--- a/modules/gui/qt4/components/preferences_widgets.cpp
+++ b/modules/gui/qt4/components/preferences_widgets.cpp
@@ -504,6 +504,7 @@ void setfillVLCConfigCombo( const char *configname, intf_thread_t *p_intf,
free( texts[i] );
}
free( texts );
+ free( values );
}
if( p_config->psz_longtext != NULL )
More information about the vlc-commits
mailing list