Bug fix: All CD tracks were reported with the sizes of the tracks in the first session. Regression introduced with version 1.2.0 (rev 4552).
This commit is contained in:
parent
ffca3e89dd
commit
3a17a8a014
@ -1 +1 @@
|
||||
#define Cdrskin_timestamP "2013.01.12.195311"
|
||||
#define Cdrskin_timestamP "2013.01.15.104005"
|
||||
|
@ -769,11 +769,11 @@ int burn_disc_cd_toc_extensions(struct burn_drive *drive, int flag)
|
||||
ret = 1;
|
||||
goto ex;
|
||||
}
|
||||
track_offset = burn_session_get_start_tno(d->session[0], 0);
|
||||
if (track_offset <= 0)
|
||||
track_offset = 1;
|
||||
|
||||
for (sidx = 0; sidx < d->sessions; sidx++) {
|
||||
track_offset = burn_session_get_start_tno(d->session[sidx], 0);
|
||||
if (track_offset <= 0)
|
||||
track_offset = 1;
|
||||
if (d->session[sidx] == NULL) {
|
||||
sprintf(msg, "d->session[%d of %d] == NULL",
|
||||
sidx, d->sessions);
|
||||
|
Loading…
Reference in New Issue
Block a user