remove unnecessary heap allocation

This commit is contained in:
XXIV
2023-09-01 05:22:22 +03:00
committed by GitHub
parent 2f5df8a94b
commit 9adc6a49aa
2 changed files with 2 additions and 2 deletions

View File

@@ -367,7 +367,7 @@ impl<'a> LlvmArchiveBuilder<'a> {
match addition {
Addition::File { path, name_in_archive } => {
let path = CString::new(path.to_str().unwrap())?;
let name = CString::new(name_in_archive.clone())?;
let name = CString::new(name_in_archive.as_bytes())?;
members.push(llvm::LLVMRustArchiveMemberNew(
path.as_ptr(),
name.as_ptr(),