From 8e92cc4d81b83960566ad288d7e3d947ab57ea5a Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Sun, 2 Jun 2024 17:03:32 -0700 Subject: [PATCH] chore: Fix a build error --- src/unstable.rs | 2 +- src/write.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/unstable.rs b/src/unstable.rs index 85f2b396..102c4336 100644 --- a/src/unstable.rs +++ b/src/unstable.rs @@ -43,7 +43,7 @@ pub trait LittleEndianWriteExt: Write { } } -impl LittleEndianWriteExt for W {} +impl LittleEndianWriteExt for W {} /// Helper methods for reading unsigned integers in little-endian form. pub trait LittleEndianReadExt: Read { diff --git a/src/write.rs b/src/write.rs index ec708d59..f753cb83 100644 --- a/src/write.rs +++ b/src/write.rs @@ -21,7 +21,7 @@ use std::default::Default; use std::fmt::{Debug, Formatter}; use std::io; use std::io::prelude::*; -use std::io::{BufReader, SeekFrom}; +use std::io::{BufReader, Cursor, SeekFrom}; use std::marker::PhantomData; use std::mem; use std::str::{from_utf8, Utf8Error}; @@ -882,9 +882,9 @@ impl ZipWriter { }; if pad_length >= 4 { // Add an extra field to the extra_data, per APPNOTE 4.6.11 - let pad_body = vec![0; pad_length - 4]; + let mut pad_body = vec![0; pad_length - 4]; if pad_body.len() >= 2 { - pad_body[0..2].write_u16_le(options.alignment)?; + Cursor::new(&mut pad_body).write_u16_le(options.alignment)?; } writer.write_u16_le(0xa11e)?; writer