git://git.exim.org
/
exim.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Regex cache observability
[exim.git]
/
src
/
exim_monitor
/
em_queue.c
diff --git
a/src/exim_monitor/em_queue.c
b/src/exim_monitor/em_queue.c
index 7a441cb866eb8359a4649a695411300ff422444f..9badd24512d527aadfba3b929898c26b714bca00 100644
(file)
--- a/
src/exim_monitor/em_queue.c
+++ b/
src/exim_monitor/em_queue.c
@@
-3,6
+3,7
@@
*************************************************/
/* Copyright (c) University of Cambridge 1995 - 2018 */
*************************************************/
/* Copyright (c) University of Cambridge 1995 - 2018 */
+/* Copyright (c) The Exim Maintainers 2020 - 2022 */
/* See the file NOTICE for conditions of use and distribution. */
/* See the file NOTICE for conditions of use and distribution. */
@@
-137,8
+138,8
@@
tree_node *
acl_var_create(uschar *name)
{
tree_node *node, **root;
acl_var_create(uschar *name)
{
tree_node *node, **root;
-root =
(name[0] == 'c')
? &acl_var_c : &acl_var_m;
-node = store_get(sizeof(tree_node) + Ustrlen(name),
FALSE
);
+root =
name[0] == 'c'
? &acl_var_c : &acl_var_m;
+node = store_get(sizeof(tree_node) + Ustrlen(name),
GET_UNTAINTED
);
Ustrcpy(node->name, name);
node->data.ptr = NULL;
(void)tree_insertnode(root, node);
Ustrcpy(node->name, name);
node->data.ptr = NULL;
(void)tree_insertnode(root, node);