From 3c0ccf48ff4a6daad2d1f3406f17d6b6ea54a143 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sat, 13 May 2023 14:55:51 -0700 Subject: [PATCH] Explicitly allow zero loop iterations --- src/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index 98449326..b64cc3cf 100644 --- a/src/write.rs +++ b/src/write.rs @@ -152,7 +152,7 @@ impl arbitrary::Arbitrary<'_> for FileOptions { central_extra_data: Vec::with_capacity(u16::MAX as usize), alignment: u16::arbitrary(u)?, }; - u.arbitrary_loop(None, Some((u16::MAX / 4) as u32), |u| { + u.arbitrary_loop(Some(0), Some((u16::MAX / 4) as u32), |u| { options .add_extra_data( u16::arbitrary(u)?,