[td-225] fix memory leaks.

This commit is contained in:
Haojun Liao 2020-06-02 18:21:34 +08:00
parent 15bc41f5e3
commit 2ed00136f9
1 changed files with 2 additions and 0 deletions

View File

@ -116,6 +116,8 @@ void taosDestoryFillInfo(SFillInfo* pFillInfo) {
}
tfree(pFillInfo->pData);
tfree(pFillInfo->pFillCol);
tfree(pFillInfo);
}