Bug fix: need to make a copy

This commit is contained in:
Chris Hennick 2023-05-01 16:10:59 -07:00
parent 29237770c9
commit 1006ddb0e9
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -28,7 +28,7 @@ pub struct LargeFile {
pub default_pattern_first_byte: u8,
pub default_pattern_extra_bytes: Vec<u8>,
pub parts: Vec<SparseFilePart>,
pub min_extra_length: u32
pub min_extra_length: u16
}
#[derive(Arbitrary,Debug)]
@ -87,7 +87,7 @@ fn do_operation<T>(writer: &mut zip_next::ZipWriter<T>,
for part in &file.parts {
let mut bytes = Vec::with_capacity(part.extra_bytes.len() + 1);
bytes.push(part.first_byte);
bytes.extend(part.extra_bytes);
bytes.extend(part.extra_bytes.iter());
for (index, byte) in repeat(bytes.iter()).take(part.repeats as usize + 1).flatten().enumerate() {
sparse_file[part.start as usize + index] = *byte;
}