]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
remove assertion for now
authorAlan T. DeKok <aland@freeradius.org>
Mon, 26 Jun 2017 15:03:22 +0000 (11:03 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Mon, 26 Jun 2017 16:53:46 +0000 (12:53 -0400)
src/main/unlang_interpret.c

index 649aa26e86bd3f2928acf3bded3ce7d3522847d7..414163e5dbe026e57726df191dd1b38fd9640cb6 100644 (file)
@@ -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;
 }