]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
just return
authorAlan T. DeKok <aland@freeradius.org>
Wed, 1 Feb 2023 14:04:49 +0000 (09:04 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 1 Feb 2023 14:04:49 +0000 (09:04 -0500)
src/lib/unlang/xlat_eval.c

index 191be276ea393a1ee19298cc2563ed899046ee12..81fa6eebd9c57826f36506188f1c4b3e7fc01e0f 100644 (file)
@@ -826,7 +826,9 @@ xlat_action_t xlat_frame_eval_resume(TALLOC_CTX *ctx, fr_dcursor_t *out,
                fr_dcursor_next(out);           /* Wind to the start of this functions output */
                RDEBUG2("| --> %pV", fr_dcursor_current(out));
                if (!xlat_process_return(request, node->call.func, (FR_DLIST_HEAD(fr_value_box_list) *)out->dlist,
-                                        fr_dcursor_current(out))) xa = XLAT_ACTION_FAIL;
+                                        fr_dcursor_current(out))) {
+                       return XLAT_ACTION_FAIL;
+               }
 
                /*
                 *      It's easier if we get xlat_frame_eval to continue evaluating the frame.