[td-225]fix memory leak.

This commit is contained in:
Haojun Liao 2021-04-26 18:52:23 +08:00
parent 644be4bca8
commit 47222b650c
1 changed files with 5 additions and 2 deletions

View File

@ -55,10 +55,13 @@ void freeParam(SQueryParam *param) {
tfree(param->tagCond);
tfree(param->tbnameCond);
tfree(param->pTableIdList);
// tfree(param->pExprMsg);
// tfree(param->pSecExprMsg);
taosArrayDestroy(param->pOperator);
tfree(param->pExprs);
tfree(param->pSecExprs);
tfree(param->pExpr);
tfree(param->pSecExpr);
tfree(param->pGroupColIndex);
tfree(param->pTagColumnInfo);
tfree(param->pGroupbyExpr);