Skip intersession leads.

This commit is contained in:
2019-12-31 02:59:19 +00:00
parent 638583628c
commit 719450f043

View File

@@ -1573,6 +1573,14 @@ namespace DiscImageChef.Core.Devices.Dumping
break;
}
while(leadOutExtents.Contains(i))
{
i++;
}
if((long)i > lastSector)
break;
uint firstSectorToRead = (uint)i;
if((lastSector + 1) - (long)i < _maximumReadable)