From: Alan T. DeKok Date: Fri, 20 May 2022 13:29:15 +0000 (-0400) Subject: initialize more fields X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=978ef8fc5a8d78b0c5afe21684425b818314bf4b;p=thirdparty%2Ffreeradius-server.git initialize more fields --- diff --git a/src/lib/unlang/xlat_priv.h b/src/lib/unlang/xlat_priv.h index e77fdbb13f6..83ec3d651ad 100644 --- a/src/lib/unlang/xlat_priv.h +++ b/src/lib/unlang/xlat_priv.h @@ -202,6 +202,7 @@ static inline xlat_exp_t *xlat_exp_alloc_null(TALLOC_CTX *ctx) MEM(node = talloc_zero(ctx, xlat_exp_t)); node->flags.pure = true; /* everything starts pure */ + node->quote = T_BARE_WORD; return node; }