[vlc-devel] commit: access violation fixed, config_GetPsz from p_intf instead of p_aout which is null ( André Weber )

git version control git at videolan.org
Thu Mar 6 23:22:11 CET 2008


vlc | branch: master | André Weber <atmo at videolan.org> | Thu Mar  6 23:28:07 2008 +0100| [b474086030dda418c7be58fc5a4812332e6bd2a5]

access violation fixed, config_GetPsz from p_intf instead of p_aout which is null

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b474086030dda418c7be58fc5a4812332e6bd2a5
---

 modules/gui/qt4/components/extended_panels.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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 9cf42e8..db28287
--- 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] );




More information about the vlc-devel mailing list