Fixed low transaction size introduced by cooperation of revisions 855 and 860

This commit is contained in:
Thomas Schmitt 2007-05-28 19:25:09 +00:00
parent ddc2745495
commit d7ca1dd333
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2007.05.28.170243"
#define Cdrskin_timestamP "2007.05.28.192421"

View File

@ -219,7 +219,7 @@ static unsigned char *get_sector(struct burn_write_opts *opts,
/* ts A61219 : opts->obs is eventually a 32k trigger for DVD */
if (out->bytes + seclen > BUFFER_SIZE ||
out->bytes + seclen > opts->obs) {
(opts->obs > 0 && out->bytes + seclen > opts->obs)) {
int err;
err = d->write(d, d->nwa, out);
if (err == BE_CANCELLED)