Revert "Support/Path: remove raw delete"

This reverts commit r216360.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216428 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dylan Noblesmith 2014-08-26 02:03:30 +00:00
parent 759a71a1fa
commit 27dc1b8446

View File

@ -881,8 +881,7 @@ std::error_code copy_file(const Twine &From, const Twine &To) {
}
const size_t BufSize = 4096;
std::vector<char> Buffer(BufSize);
char *Buf = Buffer.data();
char *Buf = new char[BufSize];
int BytesRead = 0, BytesWritten = 0;
for (;;) {
BytesRead = read(ReadFD, Buf, BufSize);
@ -899,6 +898,7 @@ std::error_code copy_file(const Twine &From, const Twine &To) {
}
close(ReadFD);
close(WriteFD);
delete[] Buf;
if (BytesRead < 0 || BytesWritten < 0)
return std::error_code(errno, std::generic_category());