From 00ea13b0ad78f735170332b3a6dd38b05c357d63 Mon Sep 17 00:00:00 2001 From: marian Date: Sat, 12 Apr 2008 09:41:28 +0000 Subject: [PATCH] Bug fix in destructor (Rene Brun) --- TPC/AliTPCseed.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TPC/AliTPCseed.cxx b/TPC/AliTPCseed.cxx index 59e0251de76..b30634632aa 100644 --- a/TPC/AliTPCseed.cxx +++ b/TPC/AliTPCseed.cxx @@ -233,9 +233,9 @@ AliTPCseed::AliTPCseed(Double_t xr, Double_t alpha, const Double_t xx[5], AliTPCseed::~AliTPCseed(){ // // destructor - if (fPoints) delete fPoints; + if (fPoints) delete [] fPoints; fPoints =0; - if (fEPoints) delete fEPoints; + if (fEPoints) delete [] fEPoints; fEPoints = 0; fNoCluster =0; if (fClusterOwner){ -- 2.43.5