fix(tsdb):fix memory leak.
This commit is contained in:
parent
15c55508ac
commit
9116a4092a
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue