From d60905aeb327c96a9f6182e4be434627ed60bfa6 Mon Sep 17 00:00:00 2001 From: dapan1121 Date: Wed, 20 Jul 2022 10:01:29 +0800 Subject: [PATCH] fix: fix mem leak --- source/client/src/clientImpl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/client/src/clientImpl.c b/source/client/src/clientImpl.c index 2ddf843a08..c83b80dcfc 100644 --- a/source/client/src/clientImpl.c +++ b/source/client/src/clientImpl.c @@ -621,6 +621,7 @@ int32_t buildSyncExecNodeList(SRequestObj* pRequest, SArray** pNodeList, SArray* } taosArrayPush(pDbVgList, &pVgList); + taosArrayDestroy(pVgList); } }