From 3436a569ab1f76944f45f2dfa0eab5c8aaeec6c1 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 13 Jun 2024 22:20:58 -0700 Subject: [PATCH] style: cargo fmt --all --- src/write.rs | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/write.rs b/src/write.rs index 48c305f6..9f3b7821 100644 --- a/src/write.rs +++ b/src/write.rs @@ -280,13 +280,14 @@ pub struct ExtendedFileOptions { } impl ExtendedFileOptions { - pub fn add_extra_data(&mut self, header_id: u16, data: Box<[u8]>, central_only: bool) -> ZipResult<()> { + pub fn add_extra_data( + &mut self, + header_id: u16, + data: Box<[u8]>, + central_only: bool, + ) -> ZipResult<()> { let len = data.len() + 4; - if self.extra_data.len() - + self.central_extra_data.len() - + len - > u16::MAX as usize - { + if self.extra_data.len() + self.central_extra_data.len() + len > u16::MAX as usize { Err(InvalidArchive( "Extra data field would be longer than allowed", )) @@ -328,17 +329,14 @@ impl ExtendedFileOptions { "Extra-data field needs 2 tag bytes", ))); } - parse_single_extra_field( - &mut ZipFileData::default(), - &mut Cursor::new(data.to_vec()), - )?; + parse_single_extra_field(&mut ZipFileData::default(), &mut Cursor::new(data.to_vec()))?; #[cfg(not(feature = "unreserved"))] { let header_id = u16::from_le_bytes([data[0], data[1]]); if header_id <= 31 || EXTRA_FIELD_MAPPING - .iter() - .any(|&mapped| mapped == header_id) + .iter() + .any(|&mapped| mapped == header_id) { return Err(ZipError::Io(io::Error::new( io::ErrorKind::Other, @@ -938,13 +936,15 @@ impl ZipWriter { extra_data: options .extended_options .extra_data() - .unwrap_or(&Arc::new(vec![])).clone(), + .unwrap_or(&Arc::new(vec![])) + .clone(), central_extra_data: options .extended_options .central_extra_data() - .unwrap_or(&Arc::new(vec![])).clone(), + .unwrap_or(&Arc::new(vec![])) + .clone(), }; - if let Some(EncryptWith::ZipCrypto {..}) = options.encrypt_with { + if let Some(EncryptWith::ZipCrypto { .. }) = options.encrypt_with { extensions.add_extra_data(0, Box::new([0u8; 10]), false)?; } let mut extra_data_end = header_end + extensions.extra_data.len() as u64;