From 831a272f4bb7fab71333105b583a7a4609900864 Mon Sep 17 00:00:00 2001 From: Deterous <138427222+Deterous@users.noreply.github.com> Date: Thu, 6 Nov 2025 10:26:42 +0900 Subject: [PATCH] Final ISO9660 fix (#41) * debug * using * Test fix * Final fix --- SabreTools.Serialization/Readers/ISO9660.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SabreTools.Serialization/Readers/ISO9660.cs b/SabreTools.Serialization/Readers/ISO9660.cs index f5e125bb..1a48b6cb 100644 --- a/SabreTools.Serialization/Readers/ISO9660.cs +++ b/SabreTools.Serialization/Readers/ISO9660.cs @@ -687,7 +687,7 @@ namespace SabreTools.Serialization.Readers // Start of sector should not be 0, ignore entire directory int nextRecordLength = data.PeekByteValue(); - if (nextRecordLength <= paddingLength) + if (nextRecordLength <= 0) return null; continue;