mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Explicitly erase the file from disk if something bad happened. <rdar://problem/12184899>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163349 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6b96c3f71f
commit
0b95a9949b
@ -163,13 +163,16 @@ bool LTOCodeGenerator::compile_to_file(const char** name, std::string& errMsg) {
|
||||
// generate object file
|
||||
bool genResult = false;
|
||||
tool_output_file objFile(uniqueObjPath.c_str(), errMsg);
|
||||
if (!errMsg.empty())
|
||||
if (!errMsg.empty()) {
|
||||
uniqueObjPath.eraseFromDisk();
|
||||
return true;
|
||||
}
|
||||
|
||||
genResult = this->generateObjectFile(objFile.os(), errMsg);
|
||||
objFile.os().close();
|
||||
if (objFile.os().has_error()) {
|
||||
objFile.os().clear_error();
|
||||
uniqueObjPath.eraseFromDisk();
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -196,6 +199,7 @@ const void* LTOCodeGenerator::compile(size_t* length, std::string& errMsg) {
|
||||
OwningPtr<MemoryBuffer> BuffPtr;
|
||||
if (error_code ec = MemoryBuffer::getFile(name, BuffPtr, -1, false)) {
|
||||
errMsg = ec.message();
|
||||
sys::Path(_nativeObjectPath).eraseFromDisk();
|
||||
return NULL;
|
||||
}
|
||||
_nativeObjectFile = BuffPtr.take();
|
||||
|
Loading…
x
Reference in New Issue
Block a user