Skip to content

Commit

Permalink
memcount: fix type spec leading to a wrong false positive on memcount…
Browse files Browse the repository at this point in the history
… tests
  • Loading branch information
gustafn committed Oct 3, 2024
1 parent 72fcc44 commit 0922b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generic/nsf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 0922b66

Please sign in to comment.