Fix swapping location of big-endian path table in ISO9660 debug mode.

This commit is contained in:
2020-06-25 23:17:09 +01:00
parent ecad6b9286
commit 8e62a63efb

View File

@@ -610,7 +610,7 @@ namespace Aaru.Filesystems.ISO9660
{
Extents = new List<(uint extent, uint size)>
{
(pathTableMsbLocation, (uint)pathTableData.Length)
(Swapping.Swap(pathTableMsbLocation), (uint)pathTableData.Length)
},
Filename = "$PATH_TABLE.MSB", Size = (uint)pathTableData.Length, Timestamp = decodedVd.CreationTime
});