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

TBRec: Fix warnings in LTO build.

Uninitialized variables.
parent 3fb15d0b
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
*/
......@@ -144,7 +144,7 @@ StatusCode TBPhaseRec::execute()
}
}
TBTDCRawCont * tdcRawCont;
TBTDCRawCont * tdcRawCont = nullptr;
StatusCode sc = evtStore()->retrieve(tdcRawCont, "TDCRawCont");
if (sc.isFailure()) {
ATH_MSG_ERROR ( "TBObjectReco: Retrieval of TDCRawCont failed" );
......
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