From b180b606515076f373021ebf864f9cf41b66684a Mon Sep 17 00:00:00 2001 From: jgrosseo Date: Thu, 26 Apr 2007 14:55:49 +0000 Subject: [PATCH] fixed missing return value check (resulting in crash when TreeK is not readable) --- STEER/AliRunLoader.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STEER/AliRunLoader.cxx b/STEER/AliRunLoader.cxx index bde2a12441f..5250242ac36 100644 --- a/STEER/AliRunLoader.cxx +++ b/STEER/AliRunLoader.cxx @@ -294,7 +294,7 @@ Int_t AliRunLoader::GetEvent(Int_t evno) } //Read Kinematics if loaded - fKineDataLoader->GetEvent(); + retval = fKineDataLoader->GetEvent(); if (retval) { AliError(Form("Error occured while GetEvent for Kinematics. Event %d",evno)); -- 2.43.0