Skip to content
Snippets Groups Projects
Commit 53ebcdd5 authored by Rene Brun's avatar Rene Brun
Browse files

From Gerri:

In TFileStager::IsStaged, always close files after testing


git-svn-id: http://root.cern.ch/svn/root/trunk@32312 27541ba8-7e3a-0410-8455-c3a389f83636
parent 68b08582
Branches
Tags
No related merge requests found
...@@ -129,10 +129,10 @@ Bool_t TFileStager::IsStaged(const char *f) ...@@ -129,10 +129,10 @@ Bool_t TFileStager::IsStaged(const char *f)
Bool_t rc = kTRUE; Bool_t rc = kTRUE;
if (!ff || ff->IsZombie()) { if (!ff || ff->IsZombie()) {
rc = kFALSE; rc = kFALSE;
if (ff) { }
ff->Close(); if (ff) {
delete ff; ff->Close();
} delete ff;
} }
// Done // Done
return rc; return rc;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment