mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Fix minor memory leak
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1837 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f28d6c9313
commit
9176fe4171
@ -1210,6 +1210,12 @@ MethodHeaderH : OptInternal TypesV STRINGCONSTANT '(' ArgList ')' {
|
||||
ArgList.push_back(I->first);
|
||||
}
|
||||
delete $5; // We're now done with the argument list
|
||||
} else if ($5) {
|
||||
// If we are a declaration, we should free the memory for the argument list!
|
||||
for (list<pair<MethodArgument*, char*> >::iterator I = $5->begin();
|
||||
I != $5->end(); ++I)
|
||||
if (I->second) free(I->second); // Free the memory for the name...
|
||||
delete $5; // Free the memory for the list itself
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user