Fixed possible uninitialized variable use introduced by rev 4152

This commit is contained in:
Thomas Schmitt 2011-07-14 16:22:27 +00:00
parent 13895a6518
commit 4e287dbfed
2 changed files with 2 additions and 2 deletions

View File

@ -5388,7 +5388,7 @@ int Cdrskin_print_all_profiles(struct CdrskiN *skin, struct burn_drive *drive,
int Cdrskin_atip(struct CdrskiN *skin, int flag)
{
int ret,is_not_really_erasable= 0, current_is_cd= 1;
double x_speed_max, x_speed_min= -1.0;
double x_speed_max= -1.0, x_speed_min= -1.0;
enum burn_disc_status s;
struct burn_drive *drive;
int profile_number= 0;

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2011.07.12.173727"
#define Cdrskin_timestamP "2011.07.14.162150"