Made isoburn_prepare_disc_aux ready for unsigned 32 bit

This commit is contained in:
Thomas Schmitt 2024-03-10 08:59:06 +01:00
parent 9003e477e7
commit bdc9164787
2 changed files with 3 additions and 3 deletions

View File

@ -595,7 +595,7 @@ int isoburn_prepare_disc_aux(struct burn_drive *in_d, struct burn_drive *out_d,
IsoWriteOpts *wopts= NULL;
enum burn_disc_status state;
int ret, fifo_chunks, i, new_img, early_indev_release;
uint32_t data_start= -1;
uint32_t data_start= 0xffffffff;
size_t buffer_size= 0, buffer_free= 0;
char *msg= NULL;
@ -693,7 +693,7 @@ int isoburn_prepare_disc_aux(struct burn_drive *in_d, struct burn_drive *out_d,
ret= iso_write_opts_get_data_start(wopts, &data_start, 0);
opts->data_start_lba= -1;
if(ret > 0 && data_start <= 0x7FFFFFFF)
if(ret > 0)
opts->data_start_lba= data_start;
/* TODO check return values for failure. properly clean-up on error */

View File

@ -1 +1 @@
#define Xorriso_timestamP "2024.03.10.075517"
#define Xorriso_timestamP "2024.03.10.075847"