mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Fix a hypothetical memory leak, identified by Coverity. In practice, this
object is never deleted though. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28256 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b5d9319bc5
commit
bbea1245a1
@ -392,12 +392,14 @@ JITMemoryManager::JITMemoryManager(bool useGOT) {
|
||||
|
||||
// Allocate the GOT.
|
||||
GOTBase = NULL;
|
||||
if (useGOT) GOTBase = (unsigned char*)malloc(sizeof(void*) * 8192);
|
||||
if (useGOT) GOTBase = new unsigned char[sizeof(void*) * 8192];
|
||||
}
|
||||
|
||||
JITMemoryManager::~JITMemoryManager() {
|
||||
for (unsigned i = 0, e = Blocks.size(); i != e; ++i)
|
||||
sys::Memory::ReleaseRWX(Blocks[i]);
|
||||
|
||||
delete[] GOTBase;
|
||||
Blocks.clear();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user