Fix: Address a few benign memory leaks
This patch is the result of static analysis identifying a number of memory leaks. The leaks are all benign as they are a result of not deallocating memory in the desctructor. The fix still has value as it removes false positives in the static analysis.
This commit is contained in:
@@ -243,6 +243,9 @@ BaseCPU::enableFunctionTrace()
|
||||
|
||||
BaseCPU::~BaseCPU()
|
||||
{
|
||||
delete profileEvent;
|
||||
delete[] comLoadEventQueue;
|
||||
delete[] comInstEventQueue;
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user