From: cussonno Date: Wed, 27 Oct 2004 07:35:29 +0000 (+0000) Subject: Bug fixed: pointer was not properly deleted X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=305197bda22b4617e8f5a1d1dc0697438458a0d3;p=u%2Fmrichter%2FAliRoot.git Bug fixed: pointer was not properly deleted --- diff --git a/MUON/AliMUONEventReconstructor.cxx b/MUON/AliMUONEventReconstructor.cxx index 47442b25122..06202b7365f 100644 --- a/MUON/AliMUONEventReconstructor.cxx +++ b/MUON/AliMUONEventReconstructor.cxx @@ -1214,6 +1214,7 @@ Int_t AliMUONEventReconstructor::MakeTrackCandidatesWithOneSegmentAndOnePoint(Al } } // for (iHit = iHitMin;... delete extrapHitForRec; + extrapHitForRec = NULL; } // for (ch = ch2;... return nbCan1Seg1Hit; }