From 5098d12d0f699087b007f8b8171ac223b7c16a91 Mon Sep 17 00:00:00 2001
From: scott snyder <snyder@bnl.gov>
Date: Tue, 25 Jan 2022 15:21:55 +0100
Subject: [PATCH] CaloTriggerTool: Fix warnings seen when LTO is enabled.

Uninitialized pointer passed to SG::retrieve.
---
 Calorimeter/CaloTriggerTool/src/LArTTCellMap.cxx | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Calorimeter/CaloTriggerTool/src/LArTTCellMap.cxx b/Calorimeter/CaloTriggerTool/src/LArTTCellMap.cxx
index 872bc478625e..ee8172b41822 100755
--- a/Calorimeter/CaloTriggerTool/src/LArTTCellMap.cxx
+++ b/Calorimeter/CaloTriggerTool/src/LArTTCellMap.cxx
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
+  Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
 */
 
 #include "CaloTriggerTool/LArTTCellMap.h"
@@ -36,10 +36,10 @@ void LArTTCellMap::set( const LArTTCell& m )
 
   ServiceHandle<StoreGateSvc> detStore ("DetectorStore", "LArTTCellMap");
 
-  const LArEM_ID* em_id;
-  const LArHEC_ID* hec_id;
-  const LArFCAL_ID* fcal_id;
-  const CaloLVL1_ID* lvl1_id;
+  const LArEM_ID* em_id = nullptr;
+  const LArHEC_ID* hec_id = nullptr;
+  const LArFCAL_ID* fcal_id = nullptr;
+  const CaloLVL1_ID* lvl1_id = nullptr;
 
   StatusCode status=detStore->retrieve(em_id);
   if(status.isFailure()){
-- 
GitLab