From: Arran Cudbard-Bell Date: Wed, 1 Dec 2021 14:30:40 +0000 (-0600) Subject: Redundant as xlat_exp_alloc_null already sets the pure flag X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc81d0b0a2fb68c1e6e0fafc4e3bdc2ea039c20f;p=thirdparty%2Ffreeradius-server.git Redundant as xlat_exp_alloc_null already sets the pure flag --- diff --git a/src/lib/unlang/xlat_tokenize.c b/src/lib/unlang/xlat_tokenize.c index a0a93c13b2b..0d9ef3d4487 100644 --- a/src/lib/unlang/xlat_tokenize.c +++ b/src/lib/unlang/xlat_tokenize.c @@ -140,7 +140,6 @@ static inline CC_HINT(always_inline) xlat_exp_t *xlat_exp_alloc(TALLOC_CTX *ctx, node = xlat_exp_alloc_null(ctx); node->type = type; - node->flags.pure = true; /* everything starts pure */ if (!in) return node;