From: André Weber Date: Thu, 6 Mar 2008 22:28:07 +0000 (+0100) Subject: access violation fixed, config_GetPsz from p_intf instead of p_aout which is null X-Git-Tag: 0.9.0-test0~2288 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=b474086030dda418c7be58fc5a4812332e6bd2a5;p=vlc access violation fixed, config_GetPsz from p_intf instead of p_aout which is null --- diff --git a/modules/gui/qt4/components/extended_panels.cpp b/modules/gui/qt4/components/extended_panels.cpp old mode 100644 new mode 100755 index 9cf42e856e..db282876bc --- a/modules/gui/qt4/components/extended_panels.cpp +++ b/modules/gui/qt4/components/extended_panels.cpp @@ -1076,7 +1076,7 @@ Spatializer::Spatializer( intf_thread_t *_p_intf, QWidget *_parent ) : } else { - psz_af = config_GetPsz( p_aout, "audio-filter" ); + psz_af = config_GetPsz( p_intf, "audio-filter" ); for( int i = 0; i < NUM_SP_CTRL ; i++ ) { controlVars[i] = config_GetFloat( p_intf, psz_control_names[i] );