From: Alan T. DeKok Date: Mon, 28 Jul 2025 12:29:26 +0000 (-0400) Subject: no need to check for NULL X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f3abb26d01137abdce70f22d567909c015e93bc;p=thirdparty%2Ffreeradius-server.git no need to check for NULL --- diff --git a/src/lib/unlang/xlat_builtin.c b/src/lib/unlang/xlat_builtin.c index 6afdbfe9eb..f9b869e969 100644 --- a/src/lib/unlang/xlat_builtin.c +++ b/src/lib/unlang/xlat_builtin.c @@ -3498,7 +3498,6 @@ static xlat_action_t xlat_func_subst(TALLOC_CTX *ctx, fr_dcursor_t *out, return XLAT_ACTION_FAIL; } - fr_assert(vb && (vb->type != FR_TYPE_NULL)); fr_value_box_safety_copy(vb, subject_vb); fr_value_box_safety_merge(vb, rep_vb);