Allow files up to 1<<24 bytes in read fuzzing

This commit is contained in:
Chris Hennick 2024-02-28 17:12:54 -08:00
parent c0f22ec444
commit e787187cdd

View file

@ -7,7 +7,7 @@ fn decompress_all(data: &[u8]) -> Result<(), Box<dyn std::error::Error>> {
for i in 0..zip.len() { for i in 0..zip.len() {
let mut file = zip.by_index(i)?; 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()); let _ = std::io::copy(&mut file, &mut std::io::sink());
} }
} }