Skip to content

Commit 831a272

Browse files
authored
Final ISO9660 fix (#41)
* debug * using * Test fix * Final fix
1 parent f47e68b commit 831a272

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SabreTools.Serialization/Readers/ISO9660.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ public static List<PathTableGroup> ParsePathTableGroup(Stream data, short sector
687687

688688
// Start of sector should not be 0, ignore entire directory
689689
int nextRecordLength = data.PeekByteValue();
690-
if (nextRecordLength <= paddingLength)
690+
if (nextRecordLength <= 0)
691691
return null;
692692

693693
continue;

0 commit comments

Comments
 (0)