chore: Refactor alignment field write logic

This commit is contained in:
Chris Hennick 2024-06-02 17:37:45 -07:00
parent 2a131e67a9
commit 28fb992532
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -880,7 +880,7 @@ impl<W: Write + Seek> ZipWriter<W> {
// Add an extra field to the extra_data, per APPNOTE 4.6.11
let mut pad_body = vec![0; pad_length - 4];
if pad_body.len() >= 2 {
pad_body[0..2].copy_from_slice(&options.alignment.to_le_bytes());
[pad_body[0], pad_body[1]] = options.alignment.to_le_bytes();
}
writer.write_u16_le(0xa11e)?;
writer