This commit is contained in:
Chris Hennick 2023-05-27 16:59:07 -07:00
parent 744068b117
commit 3414e0d6fb
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -174,7 +174,7 @@ impl arbitrary::Arbitrary<'_> for FileOptions {
}
} else if options.compression_method != Stored {
options.compression_level = Some(u.int_in_range(0..=10)?);
} else if bool::arbitrary(u) {
} else if bool::arbitrary(u)? {
options.compression_level = Some(1);
}
u.arbitrary_loop(Some(0), Some((u16::MAX / 4) as u32), |u| {