fix memory leak
This commit is contained in:
parent
58f1d60815
commit
8497cdee74
|
@ -793,6 +793,7 @@ static void tsdbFreeTable(STable *pTable) {
|
||||||
|
|
||||||
tSkipListDestroy(pTable->pIndex);
|
tSkipListDestroy(pTable->pIndex);
|
||||||
taosTZfree(pTable->lastRow);
|
taosTZfree(pTable->lastRow);
|
||||||
|
tfree(pTable->lastCols);
|
||||||
tfree(pTable->sql);
|
tfree(pTable->sql);
|
||||||
|
|
||||||
for (int i = 0; i < pTable->lastColNum; ++i) {
|
for (int i = 0; i < pTable->lastColNum; ++i) {
|
||||||
|
|
Loading…
Reference in New Issue