From 3f3d78c9ee5982f3177b339587e33d9e39b2404e Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 29 Feb 2024 12:33:40 -0800 Subject: [PATCH] Bug fix: remove size check since metadata may be wrong --- fuzz/fuzz_targets/fuzz_read.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/fuzz/fuzz_targets/fuzz_read.rs b/fuzz/fuzz_targets/fuzz_read.rs index 1559d260..e0d2c7f8 100644 --- a/fuzz/fuzz_targets/fuzz_read.rs +++ b/fuzz/fuzz_targets/fuzz_read.rs @@ -9,12 +9,9 @@ fn decompress_all(data: &[u8]) -> Result<(), Box> { let mut zip = zip_next::ZipArchive::new(reader)?; for i in 0..zip.len() { - let file = zip.by_index(i)?; let expected_bytes = file.size().min(MAX_BYTES_TO_READ); - let result = std::io::copy(&mut file.take(MAX_BYTES_TO_READ), &mut std::io::sink()); - if let Ok(bytes) = result { - assert!(bytes <= expected_bytes) - } + let file = zip.by_index(i)?.take(MAX_BYTES_TO_READ); + std::io::copy(&mut file, &mut std::io::sink())?; } Ok(())