Fix an off-by-one error in large-file detection

Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
Chris Hennick 2024-05-24 13:06:12 -07:00 committed by GitHub
parent 3ab9f457fb
commit a462b859fa
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -811,7 +811,7 @@ impl ZipFileData {
None
};
let compressed_size: Option<u64> =
if self.compressed_size > spec::ZIP64_BYTES_THR || self.large_file {
if self.compressed_size >= spec::ZIP64_BYTES_THR || self.large_file {
Some(spec::ZIP64_BYTES_THR)
} else {
None