chore: String has into_bytes but not into_boxed_bytes

This commit is contained in:
Chris Hennick 2024-05-09 19:11:16 -07:00 committed by GitHub
parent f7ea2764a2
commit 186c89deea
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -1456,7 +1456,7 @@ impl<W: Write + Seek> ZipWriter<W> {
let src_index = self.index_by_name(src_name)?; let src_index = self.index_by_name(src_name)?;
let mut dest_data = self.files[src_index].to_owned(); let mut dest_data = self.files[src_index].to_owned();
dest_data.file_name = dest_name.to_string().into(); dest_data.file_name = dest_name.to_string().into();
dest_data.file_name_raw = dest_name.to_string().into_boxed_bytes(); dest_data.file_name_raw = dest_name.to_string().into_bytes().into();
self.insert_file_data(dest_data)?; self.insert_file_data(dest_data)?;
Ok(()) Ok(())
} }