Skip to content

Commit 990198b

Browse files
authored
fix directorySize check for zip64
1 parent 586e205 commit 990198b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/archive/zip/reader.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ func readDirectoryEnd(r io.ReaderAt, size int64) (dir *directoryEnd, baseOffset
604604
d.comment = string(b[:l])
605605

606606
// These values mean that the file can be a zip64 file
607-
if d.directoryRecords == 0xffff || d.directorySize == 0xffff || d.directoryOffset == 0xffffffff {
607+
if d.directoryRecords == 0xffff || d.directorySize == 0xffffffff || d.directoryOffset == 0xffffffff {
608608
p, err := findDirectory64End(r, directoryEndOffset)
609609
if err == nil && p >= 0 {
610610
directoryEndOffset = p

0 commit comments

Comments
 (0)