From 0922b668a76bea5759a546d821c13e6db8ef273e Mon Sep 17 00:00:00 2001 From: Gustaf Neumann Date: Thu, 3 Oct 2024 11:12:22 +0200 Subject: [PATCH] memcount: fix type spec leading to a wrong false positive on memcount tests --- generic/nsf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generic/nsf.c b/generic/nsf.c index 3ba8209e..d95e51cf 100644 --- a/generic/nsf.c +++ b/generic/nsf.c @@ -13128,7 +13128,7 @@ NsfProcDeleteProc( } if (ctxPtr->colonLocalVarCache != NULL) { /*fprintf(stderr, "free colonLocalVarCache %p\n", (void*)ctxPtr->colonLocalVarCache);*/ - FREE(int*, ctxPtr->colonLocalVarCache); + FREE(long*, ctxPtr->colonLocalVarCache); } if (ctxPtr->returnsObj != NULL) { DECR_REF_COUNT2("returnsObj", ctxPtr->returnsObj);