]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Redundant as xlat_exp_alloc_null already sets the pure flag
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 1 Dec 2021 14:30:40 +0000 (08:30 -0600)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 1 Dec 2021 20:06:35 +0000 (14:06 -0600)
src/lib/unlang/xlat_tokenize.c

index a0a93c13b2b8df85f864e797d2a29ad7a4241e26..0d9ef3d448731294c66acfd4c2fb5c578b2cc62b 100644 (file)
@@ -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;