From: Arran Cudbard-Bell Date: Tue, 10 Sep 2019 14:28:29 +0000 (-0500) Subject: We don't need to clear repeatable anymore it's done by frame_cleanup X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbc8a8bfe272095cc186d1313b98438d19c65d7b;p=thirdparty%2Ffreeradius-server.git We don't need to clear repeatable anymore it's done by frame_cleanup --- diff --git a/src/lib/unlang/interpret.c b/src/lib/unlang/interpret.c index a88b1e4722b..3102ea09923 100644 --- a/src/lib/unlang/interpret.c +++ b/src/lib/unlang/interpret.c @@ -428,15 +428,6 @@ static inline void frame_pop(unlang_stack_t *stack) frame_cleanup(frame); frame = &stack->frame[--stack->depth]; - - /* - * The child was break / return, AND the current frame is - * a break / return point. Stop unwinding the stack. - */ - if (stack->unwind && frame->uflags) { - repeatable_clear(frame); - return; - } } /** Evaluates all the unlang nodes in a section