From: Alan T. DeKok Date: Wed, 1 Feb 2023 14:04:49 +0000 (-0500) Subject: just return X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e946443d7853502777c923db88bedffc8a39aa4;p=thirdparty%2Ffreeradius-server.git just return --- diff --git a/src/lib/unlang/xlat_eval.c b/src/lib/unlang/xlat_eval.c index 191be276ea3..81fa6eebd9c 100644 --- a/src/lib/unlang/xlat_eval.c +++ b/src/lib/unlang/xlat_eval.c @@ -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.