ci(fuzz): Limit Zopfli buffer size to fix OOMEs

This commit is contained in:
Chris Hennick 2024-06-04 08:38:05 -07:00
parent b7bec1c2dd
commit 362a1123b5
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -288,7 +288,7 @@ impl<'a> arbitrary::Arbitrary<'a> for FileOptions<'a, ExtendedFileOptions> {
#[cfg(feature = "deflate-zopfli")]
if options.compression_method == CompressionMethod::Deflated && bool::arbitrary(u)? {
options.zopfli_buffer_size =
Some(if bool::arbitrary(u)? { 2 } else { 3 } << u.int_in_range(8..=29)?);
Some(if bool::arbitrary(u)? { 2 } else { 3 } << u.int_in_range(8..=20)?);
}
u.arbitrary_loop(Some(0), Some((u16::MAX / 4) as u32), |u| {
options