From 53e9e0b3aff3a67dc9b3be6cfde52dca57c6cf11 Mon Sep 17 00:00:00 2001 From: kailixu Date: Sun, 28 Apr 2024 04:58:05 +0800 Subject: [PATCH] enh: batch create table --- source/dnode/mgmt/mgmt_dnode/src/dmHandle.c | 1 - 1 file changed, 1 deletion(-) diff --git a/source/dnode/mgmt/mgmt_dnode/src/dmHandle.c b/source/dnode/mgmt/mgmt_dnode/src/dmHandle.c index 91d73c9dd7..a17db20773 100644 --- a/source/dnode/mgmt/mgmt_dnode/src/dmHandle.c +++ b/source/dnode/mgmt/mgmt_dnode/src/dmHandle.c @@ -173,7 +173,6 @@ void dmSendNotifyReq(SDnodeMgmt *pMgmt, SNotifyReq *pReq) { int32_t contLen = tSerializeSNotifyReq(NULL, 0, pReq); void *pHead = rpcMallocCont(contLen); tSerializeSNotifyReq(pHead, contLen, pReq); - tFreeSNotifyReq(&req); SRpcMsg rpcMsg = {.pCont = pHead, .contLen = contLen,