mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix system area calculation padding.
This commit is contained in:
@@ -192,6 +192,12 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
int systemAreaStart = entryOff + record.name_len + Marshal.SizeOf<DirectoryRecord>();
|
||||
int systemAreaLength = record.length - record.name_len - Marshal.SizeOf<DirectoryRecord>();
|
||||
|
||||
if(systemAreaStart % 2 != 0)
|
||||
{
|
||||
systemAreaStart++;
|
||||
systemAreaLength--;
|
||||
}
|
||||
|
||||
bool hasResourceFork = false;
|
||||
|
||||
if(systemAreaLength > 2)
|
||||
|
||||
Reference in New Issue
Block a user