Skip to content
Snippets Groups Projects
Commit 90547787 authored by Peter Van Gemmeren's avatar Peter Van Gemmeren Committed by Adam Edward Barton
Browse files

Manually delete addresses that are not added to the store to avoid memory leak.

parent 106605f0
No related branches found
No related tags found
5 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3
......@@ -457,6 +457,9 @@ StatusCode AthenaOutputStreamTool::streamObjects(const DataObjectVec& dataObject
} else {
m_dataHeader->insert(proxy, addr, m_processTag);
}
if (m_store->storeID() == StoreID::EVENT_STORE) {
delete addr; addr = nullptr;
}
}
} else {
ATH_MSG_ERROR("Could not fill Object Refs for DataObject (clid/key):" << (*doIter)->clID() << " " << (*doIter)->name());
......@@ -479,6 +482,7 @@ StatusCode AthenaOutputStreamTool::streamObjects(const DataObjectVec& dataObject
} else {
m_dataHeader->insert(proxy, addr, m_processTag);
}
delete addr; addr = nullptr;
}
} else {
ATH_MSG_ERROR("Could not fill Object Refs for DataHeader");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment