]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
remove unnecessary fall-through
authorAlan T. DeKok <aland@freeradius.org>
Thu, 14 Dec 2023 15:08:42 +0000 (10:08 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 14 Dec 2023 15:08:42 +0000 (10:08 -0500)
src/lib/unlang/interpret.c

index 2bbd7427bc6d3e3adf11bbea4280b17baf08edfc..c73ebb4238ac021c7d7429913b4c446d5196f530 100644 (file)
@@ -724,14 +724,13 @@ unlang_frame_action_t frame_eval(request_t *request, unlang_stack_frame_t *frame
                        default:
                                break;
                        }
-
-                       FALL_THROUGH;
+                       break;
 
                /*
                 *      Execute the next instruction in this frame
                 */
                case UNLANG_ACTION_EXECUTE_NEXT:
-                       if ((ua == UNLANG_ACTION_EXECUTE_NEXT) && unlang_ops[instruction->type].debug_braces) {
+                       if (unlang_ops[instruction->type].debug_braces) {
                                REXDENT();
                                RDEBUG2("}");
                        }