mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-05-17 12:36:14 +00:00
Support/Path: remove raw delete
llvm-svn: 216360
This commit is contained in:
parent
f82bc070e5
commit
9fd2309049
@ -881,7 +881,8 @@ std::error_code copy_file(const Twine &From, const Twine &To) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const size_t BufSize = 4096;
|
const size_t BufSize = 4096;
|
||||||
char *Buf = new char[BufSize];
|
std::vector<char> Buffer(BufSize);
|
||||||
|
char *Buf = Buffer.data();
|
||||||
int BytesRead = 0, BytesWritten = 0;
|
int BytesRead = 0, BytesWritten = 0;
|
||||||
for (;;) {
|
for (;;) {
|
||||||
BytesRead = read(ReadFD, Buf, BufSize);
|
BytesRead = read(ReadFD, Buf, BufSize);
|
||||||
@ -898,7 +899,6 @@ std::error_code copy_file(const Twine &From, const Twine &To) {
|
|||||||
}
|
}
|
||||||
close(ReadFD);
|
close(ReadFD);
|
||||||
close(WriteFD);
|
close(WriteFD);
|
||||||
delete[] Buf;
|
|
||||||
|
|
||||||
if (BytesRead < 0 || BytesWritten < 0)
|
if (BytesRead < 0 || BytesWritten < 0)
|
||||||
return std::error_code(errno, std::generic_category());
|
return std::error_code(errno, std::generic_category());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user