From e06a134a5d58eef64a55b2d8f3eb65074bc33a19 Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Mon, 21 Jul 2025 12:18:18 +0200 Subject: [PATCH] store the result somewhere --- src/lib/unlang/xlat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/unlang/xlat.c b/src/lib/unlang/xlat.c index 6c18582583..0209a7a008 100644 --- a/src/lib/unlang/xlat.c +++ b/src/lib/unlang/xlat.c @@ -394,7 +394,7 @@ static unlang_action_t unlang_xlat(UNUSED unlang_result_t *p_result, request_t * * multiple sibling nodes. */ fr_value_box_list_talloc_free(&state->out); - if (unlang_xlat_push(state->ctx, NULL, &state->out, request, child, false) < 0) { + if (unlang_xlat_push(state->ctx, p_result, &state->out, request, child, false) < 0) { RINDENT_RESTORE(request, state); return UNLANG_ACTION_STOP_PROCESSING; } -- 2.47.2