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:
Rafael Espindola 2013-06-25 04:23:46 +00:00
parent b2b5dc642c
commit fa34f42fd6

View File

@ -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) {