diff --git a/cdrskin/cdrskin_timestamp.h b/cdrskin/cdrskin_timestamp.h index 2cd2f1c..b33751d 100644 --- a/cdrskin/cdrskin_timestamp.h +++ b/cdrskin/cdrskin_timestamp.h @@ -1 +1 @@ -#define Cdrskin_timestamP "2007.09.04.224905" +#define Cdrskin_timestamP "2007.09.04.225558" diff --git a/libburn/read.c b/libburn/read.c index f2f1196..378aa66 100644 --- a/libburn/read.c +++ b/libburn/read.c @@ -409,6 +409,7 @@ int burn_read_data(struct burn_drive *d, off_t byte_address, } else { ret = burn_stdio_read(fd, (char *) d->buffer->data, cpy_size, d, 0); + err = 0; if (ret <= 0) err = BE_CANCELLED; } diff --git a/libburn/write.c b/libburn/write.c index 8aafdff..0d45637 100644 --- a/libburn/write.c +++ b/libburn/write.c @@ -2250,6 +2250,7 @@ int burn_random_access_write(struct burn_drive *d, off_t byte_address, } else { ret = burn_stdio_write(fd, (char *) d->buffer->data, d->buffer->bytes, d, 0); + err = 0; if (ret <= 0) err = BE_CANCELLED; }