fix(query): fix memory leak.

This commit is contained in:
Haojun Liao 2022-05-26 17:18:25 +08:00
parent b137be9898
commit 48bb336dd6
1 changed files with 1 additions and 0 deletions

View File

@ -257,6 +257,7 @@ static int32_t mndProcessRetrieveSysTableReq(SRpcMsg *pReq) {
terrno = rowsRead; terrno = rowsRead;
mDebug("show:0x%" PRIx64 ", retrieve completed", pShow->id); mDebug("show:0x%" PRIx64 ", retrieve completed", pShow->id);
mndReleaseShowObj(pShow, true); mndReleaseShowObj(pShow, true);
blockDataDestroy(pBlock);
return -1; return -1;
} }