From 7c2474f80cacc9473a26c7b1bec6adf4c14d6fee Mon Sep 17 00:00:00 2001 From: Danny McClanahan <1305167+cosmicexplorer@users.noreply.github.com> Date: Wed, 22 May 2024 12:14:19 -0400 Subject: [PATCH] go into_boxed_slice() earlier --- src/spec.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/spec.rs b/src/spec.rs index d8948a85..d0b3af88 100755 --- a/src/spec.rs +++ b/src/spec.rs @@ -123,9 +123,9 @@ pub(crate) trait Block: Sized + Copy { fn from_le(self) -> Self; fn parse(reader: &mut T) -> ZipResult { - let mut block = vec![0u8; mem::size_of::()]; + let mut block = vec![0u8; mem::size_of::()].into_boxed_slice(); reader.read_exact(&mut block)?; - Self::interpret(block.into_boxed_slice()) + Self::interpret(block) } fn encode(self) -> Box<[u8]> { @@ -138,12 +138,12 @@ pub(crate) trait Block: Sized + Copy { fn serialize(self) -> Box<[u8]> { /* TODO: use Box::new_zeroed() when stabilized! */ /* TODO: also consider using smallvec! */ - let mut out_block = vec![0u8; mem::size_of::()]; + let mut out_block = vec![0u8; mem::size_of::()].into_boxed_slice(); let out_ptr: *mut Self = out_block.as_mut_ptr().cast(); unsafe { out_ptr.write(self); } - out_block.into_boxed_slice() + out_block } fn write(self, writer: &mut T) -> ZipResult<()> {