Bug fix for fuzzing with deflate-zopfli disabled

This commit is contained in:
Chris Hennick 2023-05-27 17:06:37 -07:00
parent d2e2b54625
commit fd081c9f8c
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -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)?);
}