From 8e62a63efb24b4db5398bfcc7067ffb0eb66e685 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 25 Jun 2020 23:17:09 +0100 Subject: [PATCH] Fix swapping location of big-endian path table in ISO9660 debug mode. --- Aaru.Filesystems/ISO9660/Super.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Aaru.Filesystems/ISO9660/Super.cs b/Aaru.Filesystems/ISO9660/Super.cs index 95ed1ad4f..699ed1751 100644 --- a/Aaru.Filesystems/ISO9660/Super.cs +++ b/Aaru.Filesystems/ISO9660/Super.cs @@ -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 });