From e787187cdde03241c0758e3ac5f9382ac2ea57cf Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Wed, 28 Feb 2024 17:12:54 -0800 Subject: [PATCH] Allow files up to 1<<24 bytes in read fuzzing --- fuzz/fuzz_targets/fuzz_read.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzz/fuzz_targets/fuzz_read.rs b/fuzz/fuzz_targets/fuzz_read.rs index 359cf227..13a4ac29 100644 --- a/fuzz/fuzz_targets/fuzz_read.rs +++ b/fuzz/fuzz_targets/fuzz_read.rs @@ -7,7 +7,7 @@ fn decompress_all(data: &[u8]) -> Result<(), Box> { for i in 0..zip.len() { let mut file = zip.by_index(i)?; - if file.size() < 1 << 20 { + if file.size() <= 1 << 24 { let _ = std::io::copy(&mut file, &mut std::io::sink()); } }