Skip to content
Snippets Groups Projects
Commit d0b8a01a authored by scott snyder's avatar scott snyder
Browse files

TBCnv: Fix compilation warning.

Compilation warning: uninitialized variable.



Former-commit-id: 668f4ddc
parent 05c2b6fd
No related branches found
No related tags found
No related merge requests found
......@@ -230,7 +230,7 @@ StatusCode TBByteStreamCnvTool::BuildRODBlock(std::vector<uint32_t> *theRodBlock
StatusCode sc;
// TBTDCRaw part of the block :
const TBTDC* tbtdc;
const TBTDC* tbtdc = nullptr;
std::string tbtdc_Key("TBTDC");
sc=evtStore()->retrieve(tbtdc,tbtdc_Key);
if (sc!=StatusCode::SUCCESS)
......
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