1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

[RuntimeDyld] Remove a memory-leak that was introduced in r243456. Thanks to Ben

Kramer for catching this.

llvm-svn: 243476
This commit is contained in:
Lang Hames 2015-07-28 20:51:53 +00:00
parent c40b4e8361
commit 787b94fac7

View File

@ -277,7 +277,7 @@ static int printLineInfoForInput(bool LoadObjects, bool UseDebugObj) {
if (UseDebugObj) {
DebugObj = LoadedObjInfo->getObjectForDebug(Obj);
SymbolObj = DebugObj.getBinary();
LoadedObjInfo.release();
LoadedObjInfo.reset();
}
}