]> git.sesse.net Git - vlc/commitdiff
access violation fixed, config_GetPsz from p_intf instead of p_aout which is null
authorAndré Weber <atmo@videolan.org>
Thu, 6 Mar 2008 22:28:07 +0000 (23:28 +0100)
committerAndré Weber <atmo@videolan.org>
Thu, 6 Mar 2008 22:29:34 +0000 (23:29 +0100)
modules/gui/qt4/components/extended_panels.cpp [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 9cf42e8..db28287
@@ -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] );