From fd081c9f8c1b0090943fdb55f0239e01a7ff76e6 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sat, 27 May 2023 17:06:37 -0700 Subject: [PATCH] Bug fix for fuzzing with deflate-zopfli disabled --- src/write.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/write.rs b/src/write.rs index 374f237c..9e9571a5 100644 --- a/src/write.rs +++ b/src/write.rs @@ -172,6 +172,7 @@ impl arbitrary::Arbitrary<'_> for FileOptions { if bool::arbitrary(u)? { let level = u.int_in_range(0..=265)?; options.compression_level = Some(level); + #[cfg(feature = "deflate-zopfli")] if level > Compression::best().level() { options.zopfli_buffer_size = Some(1 << u.int_in_range(9..=30)?); }