From a6177f54caa4efb7aef94a22a34c18df16287776 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Tue, 19 Apr 2022 10:28:39 +0800 Subject: [PATCH] test: disable free in hash temporarily. --- source/util/src/thash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/util/src/thash.c b/source/util/src/thash.c index 4874bc16d7..6d3a259079 100644 --- a/source/util/src/thash.c +++ b/source/util/src/thash.c @@ -33,9 +33,9 @@ #define FREE_HASH_NODE(_fp, _n) \ do { \ - if (_fp != NULL) { \ +/* if (_fp != NULL) { \ (_fp)(_n); \ - } \ + }*/ \ taosMemoryFreeClear(_n); \ } while (0);