[td-225] fix memory leaks;

This commit is contained in:
Haojun Liao 2020-07-20 01:12:37 +08:00
parent 731707608c
commit 31349ebbae
1 changed files with 2 additions and 1 deletions

View File

@ -207,7 +207,8 @@ void destroyResultBuf(SDiskbasedResultBuf* pResultBuf, void* handle) {
taosArrayDestroy(pResultBuf->list);
taosHashCleanup(pResultBuf->idsTable);
tfree(pResultBuf->iBuf);
tfree(pResultBuf);
}