From c5decfbd12cfb239681568edbd1dc9402582a6be Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Mon, 24 Apr 2017 18:03:53 -0500 Subject: [PATCH] Fix for dbCa warning seg-fault Don't queue an errlog message containing a pointer to a string that will disappear soon. Thanks to Matt Pearson for the bug analysis. --- src/db/dbCa.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/db/dbCa.c b/src/db/dbCa.c index 13118eb8b..aaaaa4b5c 100644 --- a/src/db/dbCa.c +++ b/src/db/dbCa.c @@ -142,7 +142,6 @@ static void addAction(caLink *pca, short link_action) if (++removesOutstanding >= removesOutstandingWarning) { errlogPrintf("dbCa::addAction pausing, %d channels to clear\n", removesOutstanding); - printLinks(pca); } while (removesOutstanding >= removesOutstandingWarning) { epicsMutexUnlock(workListLock);