Commit 33cd8def authored by Laurent Aimar's avatar Laurent Aimar

Fixed a few buffer overflow by not using sprintf...

parent d1a4a59a
...@@ -443,7 +443,7 @@ void ExtVideo::setWidgetValue( QObject *widget ) ...@@ -443,7 +443,7 @@ void ExtVideo::setWidgetValue( QObject *widget )
else if( lineedit ) else if( lineedit )
{ {
char str[30]; char str[30];
sprintf( str, "%06X", val.i_int ); snprintf( str, sizeof(str), "%06X", val.i_int );
lineedit->setText( str ); lineedit->setText( str );
} }
else if( combobox ) combobox->setCurrentIndex( else if( combobox ) combobox->setCurrentIndex(
...@@ -915,13 +915,11 @@ void Equalizer::set2Pass() ...@@ -915,13 +915,11 @@ void Equalizer::set2Pass()
void Equalizer::setPreamp() void Equalizer::setPreamp()
{ {
float f= ( float )( ui.preampSlider->value() ) /10 - 20; const float f = ( float )( ui.preampSlider->value() ) /10 - 20;
char psz_val[5];
aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf, aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
VLC_OBJECT_AOUT, FIND_ANYWHERE ); VLC_OBJECT_AOUT, FIND_ANYWHERE );
sprintf( psz_val, "%.1f", f ); ui.preampLabel->setText( qtr( "Preamp\n" ) + QString::number( f, 'f', 1 ) + qtr( "dB" ) );
ui.preampLabel->setText( qtr( "Preamp\n" ) + psz_val + qtr( "dB" ) );
if( p_aout ) if( p_aout )
{ {
delCallbacks( p_aout ); delCallbacks( p_aout );
...@@ -934,18 +932,19 @@ void Equalizer::setPreamp() ...@@ -934,18 +932,19 @@ void Equalizer::setPreamp()
void Equalizer::setBand() void Equalizer::setBand()
{ {
char psz_values[102]; memset( psz_values, 0, 102 );
/**\todo smoothing */ /**\todo smoothing */
for( int i = 0 ; i< BANDS ; i++ ) QString values;
for( int i = 0; i < BANDS; i++ )
{ {
char psz_val[8]; const float f_val = (float)( bands[i]->value() ) / 10 - 20;
float f_val = ( float )( bands[i]->value() ) / 10 - 20 ; QString val = QString("%1").arg( f_val, 5, 'f', 1 );
sprintf( psz_values, "%s %f", psz_values, f_val );
sprintf( psz_val, "% 5.1f", f_val ); band_texts[i]->setText( band_frequencies[i] + "\n" + val + "dB" );
band_texts[i]->setText( band_frequencies[i] + "\n" + psz_val + "dB" ); values += " " + val;
} }
const char *psz_values = values.toAscii().constData();
aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf, aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
VLC_OBJECT_AOUT, FIND_ANYWHERE ); VLC_OBJECT_AOUT, FIND_ANYWHERE );
if( p_aout ) if( p_aout )
...@@ -963,23 +962,20 @@ void Equalizer::setValues( char *psz_bands, float f_preamp ) ...@@ -963,23 +962,20 @@ void Equalizer::setValues( char *psz_bands, float f_preamp )
{ {
for( int i = 0; i < BANDS; i++ ) for( int i = 0; i < BANDS; i++ )
{ {
char psz_val[8]; const float f = strtof( p, &p );
float f = strtof( p, &p );
int i_val= ( int )( ( f + 20 ) * 10 ); bands[i]->setValue( (int)( ( f + 20 ) * 10 ) );
bands[i]->setValue( i_val );
sprintf( psz_val, "% 5.1f", f ); band_texts[i]->setText( band_frequencies[i] + "\n" + QString("%1").arg( f, 5, 'f', 1 ) + "dB" );
band_texts[i]->setText( band_frequencies[i] + "\n" + psz_val + if( p == NULL || *p == '\0' )
"dB" ); break;
if( p == NULL || *p == '\0' ) break;
p++; p++;
if( *p == '\0' ) break; if( *p == '\0' )
break;
} }
} }
char psz_val[5]; ui.preampSlider->setValue( (int)( ( f_preamp + 20 ) * 10 ) );
int i_val = ( int )( ( f_preamp + 20 ) * 10 ); ui.preampLabel->setText( qtr( "Preamp\n" ) + QString::number( f_preamp, 'f', 1 ) + qtr( "dB" ) );
sprintf( psz_val, "%.1f", f_preamp );
ui.preampSlider->setValue( i_val );
ui.preampLabel->setText( qtr( "Preamp\n" ) + psz_val + qtr( "dB" ) );
} }
void Equalizer::setPreset( int preset ) void Equalizer::setPreset( int preset )
...@@ -987,15 +983,13 @@ void Equalizer::setPreset( int preset ) ...@@ -987,15 +983,13 @@ void Equalizer::setPreset( int preset )
aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf, aout_instance_t *p_aout= ( aout_instance_t * )vlc_object_find( p_intf,
VLC_OBJECT_AOUT, FIND_ANYWHERE ); VLC_OBJECT_AOUT, FIND_ANYWHERE );
char psz_values[102]; memset( psz_values, 0, 102 ); QString values;
char psz_values2[102];memset( psz_values2, 0, 102 );
for( int i = 0 ; i< BANDS ;i++ ) for( int i = 0 ; i< BANDS ;i++ )
{ values += QString( " %1" ).arg( eqz_preset_10b[preset]->f_amp[i] );
strcpy( psz_values2, psz_values );
sprintf( psz_values, "%s %5.1f", /* XXX Only needed because of setValues */
psz_values2, eqz_preset_10b[preset]->f_amp[i] ); char psz_values[256];
} snprintf( psz_values, sizeof(psz_values), "%s", values.toAscii().constData() );
if( p_aout ) if( p_aout )
{ {
...@@ -1144,16 +1138,13 @@ void Spatializer::setInitValues() ...@@ -1144,16 +1138,13 @@ void Spatializer::setInitValues()
void Spatializer::setValues( float *controlVars ) void Spatializer::setValues( float *controlVars )
{ {
char psz_val[5];
char var_name[5];
aout_instance_t *p_aout= ( aout_instance_t * ) aout_instance_t *p_aout= ( aout_instance_t * )
vlc_object_find( p_intf, VLC_OBJECT_AOUT, FIND_ANYWHERE ); vlc_object_find( p_intf, VLC_OBJECT_AOUT, FIND_ANYWHERE );
for( int i = 0 ; i < NUM_SP_CTRL ; i++ ) for( int i = 0 ; i < NUM_SP_CTRL ; i++ )
{ {
float f= ( float )( spatCtrl[i]->value() ); float f = (float)( spatCtrl[i]->value() );
sprintf( psz_val, "%.1f", f ); ctrl_readout[i]->setText( QString::number( f, 'f', 1 ) );
ctrl_readout[i]->setText( psz_val );
} }
if( p_aout ) if( p_aout )
{ {
......
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