Bugfix after changes for DVD+RW: start_byte was initialized 0, but must be -1
This commit is contained in:
parent
221aee23d1
commit
42c0cc6dd4
@ -1 +1 @@
|
|||||||
#define Cdrskin_timestamP "2006.12.24.182307"
|
#define Cdrskin_timestamP "2006.12.24.182410"
|
||||||
|
@ -34,7 +34,7 @@ struct burn_write_opts *burn_write_opts_new(struct burn_drive *drive)
|
|||||||
opts->perform_opc = 1;
|
opts->perform_opc = 1;
|
||||||
opts->obs = -1;
|
opts->obs = -1;
|
||||||
opts->obs_pad = 0;
|
opts->obs_pad = 0;
|
||||||
opts->start_byte = 0;
|
opts->start_byte = -1;
|
||||||
opts->has_mediacatalog = 0;
|
opts->has_mediacatalog = 0;
|
||||||
opts->format = BURN_CDROM;
|
opts->format = BURN_CDROM;
|
||||||
opts->multi = 0;
|
opts->multi = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user