Index: trunk/BNC/combination/bnccomb.cpp
===================================================================
--- trunk/BNC/combination/bnccomb.cpp	(revision 2912)
+++ trunk/BNC/combination/bnccomb.cpp	(revision 2913)
@@ -33,6 +33,4 @@
   _nStreams = combineStreams.size();
   
-  cout << "HAHA " << _nStreams << endl;
-
   if (_nStreams >= 2) {
     QListIterator<QString> it(combineStreams);
@@ -53,4 +51,11 @@
 void bncComb::processCorrLine(const QString& staID, const QString& line) {
   QMutexLocker locker(&_mutex);
+
+  t_corr* newCorr = new t_corr();
+  if (!newCorr->readLine(line) == success) {
+    delete newCorr;
+    return;
+  }
+
   cout << staID.toAscii().data() << " " << line.toAscii().data() << endl;
 }
