From 51a9651e9f745dfde2c1240abe57c7b5ac179897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Sandstr=C3=B6m?= Date: Thu, 14 Mar 2024 09:10:50 +0100 Subject: [PATCH] skip cleanup at exit --- src/ecmcDAQWrap.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ecmcDAQWrap.cpp b/src/ecmcDAQWrap.cpp index 9c2eea2..8d9b12d 100644 --- a/src/ecmcDAQWrap.cpp +++ b/src/ecmcDAQWrap.cpp @@ -104,6 +104,9 @@ int createDAQItem(const char* name, int type) { } void deleteAllDAQs() { + + return; // The delete process results in seg fault.. need to investigate.. + for(std::vector::iterator pDAQArray = arrays.begin(); pDAQArray != arrays.end(); ++pDAQArray) { if(*pDAQArray) { delete (*pDAQArray);