Index: trunk/BNC/combination/bnccomb.cpp
===================================================================
--- trunk/BNC/combination/bnccomb.cpp	(revision 3277)
+++ trunk/BNC/combination/bnccomb.cpp	(revision 3296)
@@ -192,4 +192,7 @@
   delete _rtnetDecoder;
   delete _antex;
+  for (int iPar = 1; iPar <= _params.size(); iPar++) {
+    delete _params[iPar-1];
+  }
 }
 
@@ -456,6 +459,4 @@
         ll(iObs) = corr->dClk * t_CST::c - DotProduct(AA.Row(iObs), x0);
       }
-
-      delete epo;
     }
 
@@ -535,4 +536,10 @@
 
   emit newMessage(_log, false);
+
+  QListIterator<cmbEpoch*> itEpo2(epochs);
+  while (itEpo2.hasNext()) {
+    cmbEpoch* epo = itEpo2.next();
+    delete epo;
+  }
 }
 
