mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Don't assume ResultPath is null terminated.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184824 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b2b5dc642c
commit
fa34f42fd6
@ -638,7 +638,8 @@ error_code unique_file(const Twine &Model, SmallVectorImpl<char> &ResultPath,
|
||||
if (close(FD))
|
||||
return error_code(errno, system_category());
|
||||
|
||||
return fs::remove(ResultPath.begin());
|
||||
StringRef P(ResultPath.begin(), ResultPath.size());
|
||||
return fs::remove(P);
|
||||
}
|
||||
|
||||
error_code make_absolute(SmallVectorImpl<char> &path) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user