From 28fb992532eca55ddb736a44c84d4f0ca2ecfb4d Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Sun, 2 Jun 2024 17:37:45 -0700 Subject: [PATCH] chore: Refactor alignment field write logic --- src/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index 2b10f634..151258a8 100644 --- a/src/write.rs +++ b/src/write.rs @@ -880,7 +880,7 @@ impl ZipWriter { // 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