From 0ae9dab6abb782340294533d10df3cea77130e49 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sat, 13 May 2023 14:44:46 -0700 Subject: [PATCH] Bug fixes --- src/write.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/write.rs b/src/write.rs index c129c919..6e2af4c9 100644 --- a/src/write.rs +++ b/src/write.rs @@ -152,16 +152,16 @@ impl arbitrary::Arbitrary<'_> for FileOptions { central_extra_data: Vec::with_capacity(u16::MAX as usize), alignment: u8::arbitrary(u)? as u16 + 1, }; - u.arbitrary_loop(None, Some(16383), || { + u.arbitrary_loop(None, Some(16383), |u| { options .add_extra_data( u16::arbitrary(u)?, - Vec::::arbitrary(u)?, + &Vec::::arbitrary(u)?, bool::arbitrary(u)?, ) .map_err(|_| arbitrary::Error::IncorrectFormat)?; Ok(core::ops::ControlFlow::Continue(())) - }); + })?; Ok(options) } }