summaryrefslogtreecommitdiff
path: root/src/maat_expr.c
diff options
context:
space:
mode:
author刘文坛 <[email protected]>2023-06-19 09:44:25 +0000
committer刘文坛 <[email protected]>2023-06-19 09:44:25 +0000
commitdf36b8987b1582808b6474daa71ef931c21f9797 (patch)
tree418a6d28c0ad84ebbb53b54553a86148c8351e89 /src/maat_expr.c
parent0b73681bd134ccf58881f07c4ab50da4460dc062 (diff)
[FEATURE]compile/plugin/xx_plugin table support gc
Diffstat (limited to 'src/maat_expr.c')
-rw-r--r--src/maat_expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/maat_expr.c b/src/maat_expr.c
index d010019..fefe24b 100644
--- a/src/maat_expr.c
+++ b/src/maat_expr.c
@@ -476,7 +476,7 @@ void *expr_runtime_new(void *expr_schema, size_t max_thread_num,
struct expr_runtime *expr_rt = ALLOC(struct expr_runtime, 1);
- expr_rt->item_hash = rcu_hash_new(expr_item_free_cb, NULL);
+ expr_rt->item_hash = rcu_hash_new(expr_item_free_cb, NULL, 0);
expr_rt->n_worker_thread = max_thread_num;
expr_rt->ref_garbage_bin = garbage_bin;
expr_rt->logger = logger;