diff --git a/libisoburn/trunk/libisoburn/isofs_wrap.c b/libisoburn/trunk/libisoburn/isofs_wrap.c index 2c984f5f..ed0e2398 100644 --- a/libisoburn/trunk/libisoburn/isofs_wrap.c +++ b/libisoburn/trunk/libisoburn/isofs_wrap.c @@ -158,6 +158,8 @@ create_blank_image:; isoburn_report_iso_error(ret, "Cannot create image", 0, "FATAL", 0); return ret; } + iso_image_set_ignore_aclea(*image, + (!!(read_opts->noacl)) | ((!!read_opts->noea) << 1) ); } else { /* Blank new image for the drive */ iso_image_unref(o->image); @@ -166,13 +168,13 @@ create_blank_image:; isoburn_report_iso_error(ret, "Cannot create image", 0, "FATAL", 0); return ret; } - if (image) { + if (image != NULL) { *image = o->image; iso_image_ref(*image); /*protects object from premature free*/ } - } - iso_image_set_ignore_aclea(*image, + iso_image_set_ignore_aclea(o->image, (!!(read_opts->noacl)) | ((!!read_opts->noea) << 1) ); + } return 1; } diff --git a/libisoburn/trunk/xorriso/xorriso_timestamp.h b/libisoburn/trunk/xorriso/xorriso_timestamp.h index b77c15ed..b110715e 100644 --- a/libisoburn/trunk/xorriso/xorriso_timestamp.h +++ b/libisoburn/trunk/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2011.02.23.202632" +#define Xorriso_timestamP "2011.02.24.191908"