From da4ab248ed2b77789601f4baf38b9efc0f3d17ca Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Sun, 29 May 2022 21:56:57 +0800 Subject: [PATCH] fix index mem leak --- source/libs/index/src/indexFst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libs/index/src/indexFst.c b/source/libs/index/src/indexFst.c index 335b086526..892716f387 100644 --- a/source/libs/index/src/indexFst.c +++ b/source/libs/index/src/indexFst.c @@ -1324,7 +1324,7 @@ StreamWithStateResult* streamWithStateNextWith(StreamWithState* sws, StreamCallb if (FST_NODE_ADDR(p->node) != fstGetRootAddr(sws->fst)) { taosArrayPop(sws->inp); } - // streamStateDestroy(p); + streamStateDestroy(p); continue; } FstTransition trn;