Strengthen fuzzing: allow very large alignments

This commit is contained in:
Chris Hennick 2023-05-13 14:47:47 -07:00
parent 0ae9dab6ab
commit bc86898cdd
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -150,7 +150,7 @@ impl arbitrary::Arbitrary<'_> for FileOptions {
encrypt_with: Option::<ZipCryptoKeys>::arbitrary(u)?,
extra_data: Vec::with_capacity(u16::MAX as usize),
central_extra_data: Vec::with_capacity(u16::MAX as usize),
alignment: u8::arbitrary(u)? as u16 + 1,
alignment: u16::arbitrary(u)?,
};
u.arbitrary_loop(None, Some(16383), |u| {
options