fix(tsdb):fix memory leak.

This commit is contained in:
Haojun Liao 2023-06-28 01:04:58 +08:00
parent 15c55508ac
commit 9116a4092a
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ static void clearBlockScanInfo(STableBlockScanInfo* p) {
p->delSkyline = taosArrayDestroy(p->delSkyline); p->delSkyline = taosArrayDestroy(p->delSkyline);
p->pBlockList = taosArrayDestroy(p->pBlockList); p->pBlockList = taosArrayDestroy(p->pBlockList);
tMapDataClear(&p->mapData); p->pDelData = taosArrayDestroy(p->pDelData);
} }
static void destroyAllBlockScanInfo(SSHashObj* pTableMap) { static void destroyAllBlockScanInfo(SSHashObj* pTableMap) {