diff --git a/fuzz/fuzz_targets/fuzz_read.rs b/fuzz/fuzz_targets/fuzz_read.rs index 13a4ac29..dde824d6 100644 --- a/fuzz/fuzz_targets/fuzz_read.rs +++ b/fuzz/fuzz_targets/fuzz_read.rs @@ -1,15 +1,14 @@ #![no_main] use libfuzzer_sys::fuzz_target; +use std::io::Read; fn decompress_all(data: &[u8]) -> Result<(), Box> { let reader = std::io::Cursor::new(data); let mut zip = zip_next::ZipArchive::new(reader)?; for i in 0..zip.len() { - let mut file = zip.by_index(i)?; - if file.size() <= 1 << 24 { - let _ = std::io::copy(&mut file, &mut std::io::sink()); - } + let file = zip.by_index(i)?; + std::io::copy(&mut file.take(1 << 24), &mut std::io::sink())?; } Ok(())