vlc/vlc-2.2 | branch: master | Hannes Domani <[email protected]> | Fri Jul 3 13:09:02 2015 +0200| [7b8c06a7b10283f9988d30320ee77bfd0ba213a5] | committer: Jean-Baptiste Kempf
Qt: fix memory leaks Signed-off-by: Jean-Baptiste Kempf <[email protected]> (cherry picked from commit 27d4490a231f6260be2a5084cb04fa7ac403909c) Signed-off-by: Jean-Baptiste Kempf <[email protected]> > 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] ); } _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
