fix: fix mem leak of fill operator

This commit is contained in:
shenglian zhou 2022-07-26 17:22:23 +08:00
parent a17015138c
commit 4ab28c4da2
1 changed files with 1 additions and 1 deletions

View File

@ -514,7 +514,7 @@ void* taosDestroyFillInfo(SFillInfo* pFillInfo) {
if (pFillInfo == NULL) {
return NULL;
}
taosMemoryFree(pFillInfo->prev->pData);
taosArrayDestroy(pFillInfo->prev);
taosArrayDestroy(pFillInfo->next);