chore: String has into_bytes but not into_boxed_bytes
This commit is contained in:
parent
f7ea2764a2
commit
186c89deea
1 changed files with 1 additions and 1 deletions
|
@ -1456,7 +1456,7 @@ impl<W: Write + Seek> ZipWriter<W> {
|
|||
let src_index = self.index_by_name(src_name)?;
|
||||
let mut dest_data = self.files[src_index].to_owned();
|
||||
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)?;
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue