Bug fixes
This commit is contained in:
parent
ba4d6548ed
commit
0ae9dab6ab
1 changed files with 3 additions and 3 deletions
|
@ -152,16 +152,16 @@ impl arbitrary::Arbitrary<'_> for FileOptions {
|
||||||
central_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: u8::arbitrary(u)? as u16 + 1,
|
||||||
};
|
};
|
||||||
u.arbitrary_loop(None, Some(16383), || {
|
u.arbitrary_loop(None, Some(16383), |u| {
|
||||||
options
|
options
|
||||||
.add_extra_data(
|
.add_extra_data(
|
||||||
u16::arbitrary(u)?,
|
u16::arbitrary(u)?,
|
||||||
Vec::<u8>::arbitrary(u)?,
|
&Vec::<u8>::arbitrary(u)?,
|
||||||
bool::arbitrary(u)?,
|
bool::arbitrary(u)?,
|
||||||
)
|
)
|
||||||
.map_err(|_| arbitrary::Error::IncorrectFormat)?;
|
.map_err(|_| arbitrary::Error::IncorrectFormat)?;
|
||||||
Ok(core::ops::ControlFlow::Continue(()))
|
Ok(core::ops::ControlFlow::Continue(()))
|
||||||
});
|
})?;
|
||||||
Ok(options)
|
Ok(options)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue