mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Implement decoding High Sierra path table.
This commit is contained in:
@@ -199,7 +199,7 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
fsFormat = "ISO9660";
|
||||
}
|
||||
|
||||
pathTable = DecodePathTable(pathTableData);
|
||||
pathTable = highSierra ? DecodeHighSierraPathTable(pathTableData) : DecodePathTable(pathTableData);
|
||||
|
||||
// High Sierra and CD-i do not support Joliet or RRIP
|
||||
if((highSierra || cdi) && this.@namespace != Namespace.Normal && this.@namespace != Namespace.Vms)
|
||||
|
||||
Reference in New Issue
Block a user