Prevent sparse-file chunks from repeating zero times
This commit is contained in:
parent
69bb01d535
commit
29237770c9
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ fn do_operation<T>(writer: &mut zip_next::ZipWriter<T>,
|
||||||
let mut bytes = Vec::with_capacity(part.extra_bytes.len() + 1);
|
let mut bytes = Vec::with_capacity(part.extra_bytes.len() + 1);
|
||||||
bytes.push(part.first_byte);
|
bytes.push(part.first_byte);
|
||||||
bytes.extend(part.extra_bytes);
|
bytes.extend(part.extra_bytes);
|
||||||
for (index, byte) in repeat(bytes.iter()).take(part.repeats).flatten().enumerate() {
|
for (index, byte) in repeat(bytes.iter()).take(part.repeats as usize + 1).flatten().enumerate() {
|
||||||
sparse_file[part.start as usize + index] = *byte;
|
sparse_file[part.start as usize + index] = *byte;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue