[vlc-commits] Qt: fix memory leaks
Hannes Domani
git at videolan.org
Wed Oct 21 18:16:23 CEST 2015
vlc/vlc-2.2 | branch: master | Hannes Domani <ssbssa at yahoo.de> | Fri Jul 3 13:09:02 2015 +0200| [7b8c06a7b10283f9988d30320ee77bfd0ba213a5] | committer: Jean-Baptiste Kempf
Qt: fix memory leaks
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
(cherry picked from commit 27d4490a231f6260be2a5084cb04fa7ac403909c)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=7b8c06a7b10283f9988d30320ee77bfd0ba213a5
---
modules/gui/qt4/components/simple_preferences.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/modules/gui/qt4/components/simple_preferences.cpp b/modules/gui/qt4/components/simple_preferences.cpp
index 87cd67d..04c144b 100644
--- a/modules/gui/qt4/components/simple_preferences.cpp
+++ b/modules/gui/qt4/components/simple_preferences.cpp
@@ -1028,6 +1028,7 @@ void SPrefsPanel::updateAudioOptions( int number)
SPrefsPanel::~SPrefsPanel()
{
qDeleteAll( controls ); controls.clear();
+ free( lang );
}
void SPrefsPanel::updateAudioVolume( int volume )
@@ -1202,6 +1203,7 @@ void SPrefsPanel::changeStyle( QString s_style )
void SPrefsPanel::langChanged( int i )
{
+ free( lang );
lang = strdup( ppsz_language[i] );
}
More information about the vlc-commits
mailing list