fix(tsdb): fix memory leak.

This commit is contained in:
Haojun Liao 2024-04-07 10:23:51 +08:00
parent e7ed8fbaa6
commit ead77fe767
1 changed files with 2 additions and 0 deletions

View File

@ -75,6 +75,8 @@ void *destroySttBlockLoadInfo(SSttBlockLoadInfo *pLoadInfo) {
taosArrayDestroy(pLoadInfo->info.pFirstKey);
taosArrayDestroy(pLoadInfo->info.pLastKey);
taosArrayDestroy(pLoadInfo->info.pCount);
taosArrayDestroy(pLoadInfo->info.pFirstTs);
taosArrayDestroy(pLoadInfo->info.pLastTs);
}
taosArrayDestroy(pLoadInfo->aSttBlk);