Bug fix for fuzzing with deflate-zopfli disabled
This commit is contained in:
parent
d2e2b54625
commit
fd081c9f8c
1 changed files with 1 additions and 0 deletions
|
@ -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)?);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue