From e9a1de4e1bb5509c408644e65ba72839f494d59c Mon Sep 17 00:00:00 2001 From: Rouven Spreckels Date: Sat, 3 Oct 2020 11:42:13 +0200 Subject: [PATCH] Fix marking parsed file as large. --- src/read.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/read.rs b/src/read.rs index ed9c5451..ea990e75 100644 --- a/src/read.rs +++ b/src/read.rs @@ -531,13 +531,13 @@ fn parse_extra_field(file: &mut ZipFileData) -> ZipResult<()> { let mut len_left = len as i64; // Zip64 extended information extra field if kind == 0x0001 { - file.large_file = true; - if file.uncompressed_size == 0xFFFFFFFF { + file.large_file = true; file.uncompressed_size = reader.read_u64::()?; len_left -= 8; } if file.compressed_size == 0xFFFFFFFF { + file.large_file = true; file.compressed_size = reader.read_u64::()?; len_left -= 8; }