Corrected a flaw found by George Danchev with cpp
This commit is contained in:
parent
32ee757c91
commit
963d139093
@ -158,6 +158,8 @@ create_blank_image:;
|
|||||||
isoburn_report_iso_error(ret, "Cannot create image", 0, "FATAL", 0);
|
isoburn_report_iso_error(ret, "Cannot create image", 0, "FATAL", 0);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
iso_image_set_ignore_aclea(*image,
|
||||||
|
(!!(read_opts->noacl)) | ((!!read_opts->noea) << 1) );
|
||||||
} else {
|
} else {
|
||||||
/* Blank new image for the drive */
|
/* Blank new image for the drive */
|
||||||
iso_image_unref(o->image);
|
iso_image_unref(o->image);
|
||||||
@ -166,13 +168,13 @@ create_blank_image:;
|
|||||||
isoburn_report_iso_error(ret, "Cannot create image", 0, "FATAL", 0);
|
isoburn_report_iso_error(ret, "Cannot create image", 0, "FATAL", 0);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
if (image) {
|
if (image != NULL) {
|
||||||
*image = o->image;
|
*image = o->image;
|
||||||
iso_image_ref(*image); /*protects object from premature free*/
|
iso_image_ref(*image); /*protects object from premature free*/
|
||||||
}
|
}
|
||||||
}
|
iso_image_set_ignore_aclea(o->image,
|
||||||
iso_image_set_ignore_aclea(*image,
|
|
||||||
(!!(read_opts->noacl)) | ((!!read_opts->noea) << 1) );
|
(!!(read_opts->noacl)) | ((!!read_opts->noea) << 1) );
|
||||||
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Xorriso_timestamP "2011.02.23.202632"
|
#define Xorriso_timestamP "2011.02.24.191908"
|
||||||
|
Loading…
Reference in New Issue
Block a user