From: Alan T. DeKok Date: Thu, 14 Apr 2022 19:16:42 +0000 (-0400) Subject: add MEM(). CID #1503919 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e106b3f1171303759df6e10c8a8f903e965e1cbb;p=thirdparty%2Ffreeradius-server.git add MEM(). CID #1503919 --- diff --git a/src/lib/unlang/interpret.c b/src/lib/unlang/interpret.c index c748cc6fea4..c2069fcb86c 100644 --- a/src/lib/unlang/interpret.c +++ b/src/lib/unlang/interpret.c @@ -931,7 +931,7 @@ void *unlang_interpret_stack_alloc(TALLOC_CTX *ctx) * This number is pretty arbitrary, but it seems * like too low level to make into a tuneable. */ - stack = talloc_zero_pooled_object(ctx, unlang_stack_t, UNLANG_STACK_MAX, 128); /* 128 bytes per state */ + MEM(stack = talloc_zero_pooled_object(ctx, unlang_stack_t, UNLANG_STACK_MAX, 128)); /* 128 bytes per state */ stack->result = RLM_MODULE_NOT_SET; return stack;