Follow-up to commit ba12014: Made use of more isoburn*_v2() calls

This commit is contained in:
Thomas Schmitt 2024-04-03 18:56:09 +02:00
parent ffaa15ed53
commit fb23fe1446
2 changed files with 3 additions and 3 deletions

View File

@ -3504,11 +3504,11 @@ no_tracks_found:;
isoburn_disc= isoburn_toc_drive_get_disc(drive);
if(isoburn_disc == NULL)
goto libburn_whole_disc;
blocks= media_blocks= isoburn_toc_disc_get_sectors(isoburn_disc);
blocks= media_blocks= isoburn_toc_disc_get_sectors_v2(isoburn_disc);
/* If possible, determine the end address of the loaded ISO image.
*/
track_lba= isoburn_get_attached_start_lba(drive);
track_lba= isoburn_get_attached_start_lba_v2(drive);
if(track_lba >= 0) {
ret= isoburn_read_iso_head_v2(drive, track_lba, &track_blocks, NULL, 0);
if(ret > 0) {

View File

@ -1 +1 @@
#define Xorriso_timestamP "2024.04.02.170748"
#define Xorriso_timestamP "2024.04.03.161444"