Bug fix: DVD+R with damaged TOC were reported by -minfo with wrong end address

This commit is contained in:
Thomas Schmitt 2013-05-10 06:41:53 +00:00
parent f18b832a82
commit 3632e1be4e
2 changed files with 2 additions and 2 deletions

View File

@ -5301,7 +5301,7 @@ int Cdrskin_minfo(struct CdrskiN *skin, int flag)
printf("%5d %5d %-6s %-10d %-10d %-10d\n",
track_count + track_offset, nominal_sessions,
ovwrt_full ? "Data" : "Blank",
nwa, lba + size - 1, size);
nwa, nwa + size - 1, size);
}
}
}

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2013.04.01.121851"
#define Cdrskin_timestamP "2013.05.10.064018"