From 8668cc12671f1144ba8f957b6647efbfb5827bb3 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Fri, 14 Feb 2020 13:28:44 +0000 Subject: [PATCH] testTodoEnd() needs to lock when NULLing --- modules/libcom/src/misc/epicsUnitTest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/libcom/src/misc/epicsUnitTest.c b/modules/libcom/src/misc/epicsUnitTest.c index 22fbc1f2a..40e67a147 100644 --- a/modules/libcom/src/misc/epicsUnitTest.c +++ b/modules/libcom/src/misc/epicsUnitTest.c @@ -176,7 +176,7 @@ void testTodoBegin(const char *why) { } void testTodoEnd(void) { - todo = NULL; + testTodoBegin(NULL); } int testDiag(const char *fmt, ...) {