From: Alan T. DeKok Date: Mon, 26 Jun 2017 15:03:22 +0000 (-0400) Subject: remove assertion for now X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df46c7b3fcbbbecdf6824c14b4bca4a5f16481f5;p=thirdparty%2Ffreeradius-server.git remove assertion for now --- diff --git a/src/main/unlang_interpret.c b/src/main/unlang_interpret.c index 649aa26e86b..414163e5dbe 100644 --- a/src/main/unlang_interpret.c +++ b/src/main/unlang_interpret.c @@ -1588,11 +1588,13 @@ rlm_rcode_t unlang_interpret(REQUEST *request, CONF_SECTION *cs, rlm_rcode_t act unlang_push_section(request, cs, action); rcode = unlang_run(request, stack); +#if 0 if (rcode != RLM_MODULE_YIELD) { rad_assert((stack->depth == 0) || stack->frame[stack->depth].top_frame); rad_assert(!stack->frame[stack->depth].instruction || /* processed the whole section */ stack->frame[stack->depth].instruction->type == UNLANG_TYPE_GROUP); /* sections are groups */ } +#endif return rcode; }