Final ISO9660 fix (#41)

* debug

* using

* Test fix

* Final fix
This commit is contained in:
Deterous
2025-11-06 10:26:42 +09:00
committed by GitHub
parent f47e68b9ba
commit 831a272f4b

View File

@@ -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;