Commit 03967e7f authored by Rémi Duraffort's avatar Rémi Duraffort

Fix memleak in Qt interface.

parent 62e75b3f
...@@ -990,6 +990,7 @@ void Equalizer::updateUISliderValues( int i_preset ) ...@@ -990,6 +990,7 @@ void Equalizer::updateUISliderValues( int i_preset )
if( i_preset < 0 ) return; if( i_preset < 0 ) return;
char *p = createValuesFromPreset( i_preset ); char *p = createValuesFromPreset( i_preset );
char *psz = p;
float f_preamp = eqz_preset_10b[i_preset]->f_preamp; float f_preamp = eqz_preset_10b[i_preset]->f_preamp;
if ( p ) if ( p )
...@@ -1008,6 +1009,7 @@ void Equalizer::updateUISliderValues( int i_preset ) ...@@ -1008,6 +1009,7 @@ void Equalizer::updateUISliderValues( int i_preset )
if( *p == '\0' ) if( *p == '\0' )
break; break;
} }
free( psz );
} }
ui.preampSlider->setValue( (int)( ( f_preamp + 20 ) * 10 ) ); ui.preampSlider->setValue( (int)( ( f_preamp + 20 ) * 10 ) );
ui.preampLabel->setText( qtr( "Preamp\n" ) ui.preampLabel->setText( qtr( "Preamp\n" )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment