From 01671c4a808bb1aef909a43b1f3e5aaa2882c459 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 29 Feb 2024 13:23:42 -0800 Subject: [PATCH] Bug fix --- 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 3947b6b4..e4daad50 100644 --- a/fuzz/fuzz_targets/fuzz_read.rs +++ b/fuzz/fuzz_targets/fuzz_read.rs @@ -9,7 +9,7 @@ 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)?.take(MAX_BYTES_TO_READ); + let mut file = zip.by_index(i)?.take(MAX_BYTES_TO_READ); std::io::copy(&mut file, &mut std::io::sink())?; }