Added forgotten read/write counters in burn_stdio_write_track()

This commit is contained in:
Thomas Schmitt 2007-09-06 10:00:20 +00:00
parent 43a415a081
commit 6f2b1c214e
2 changed files with 4 additions and 1 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2007.09.06.094402"
#define Cdrskin_timestamP "2007.09.06.095954"

View File

@ -1867,6 +1867,7 @@ int burn_stdio_write_track(struct burn_write_opts *o, struct burn_session *s,
eof_seen = 1;
ret = bufsize;
}
t->sourcecount += ret;
ret = burn_stdio_write(fd, buf, ret, d, 0);
if (ret <= 0)
return ret;
@ -1874,6 +1875,8 @@ int burn_stdio_write_track(struct burn_write_opts *o, struct burn_session *s,
d->progress.sector = (w_count + (off_t) ret) / (off_t) 2048;
if (open_ended)
d->progress.sectors = d->progress.sector;
t->writecount = w_count;
t->written_sectors = w_count / 2048;
}
/* >>> write t->tail zeros */;