From: Alan T. DeKok Date: Wed, 31 Mar 2021 12:21:52 +0000 (-0400) Subject: shut up static analyzer X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e9ca15dd3e26bf5013256fe97ad7a1c58441b8b;p=thirdparty%2Ffreeradius-server.git shut up static analyzer --- diff --git a/src/lib/unlang/interpret.c b/src/lib/unlang/interpret.c index 594bb1eedf0..74786c511f2 100644 --- a/src/lib/unlang/interpret.c +++ b/src/lib/unlang/interpret.c @@ -926,7 +926,10 @@ bool unlang_interpret_is_resumable(request_t *request) void unlang_interpret_request_done(request_t *request) { unlang_stack_t *stack = request->stack; - unlang_interpret_t *intp = stack->intp; + unlang_interpret_t *intp; + + fr_assert(stack != NULL); + intp = stack->intp; if (request_is_internal(request)) { intp->funcs.done_internal(request, stack->result, intp->uctx);