fix: fix mem leak of fill operator
This commit is contained in:
parent
a17015138c
commit
4ab28c4da2
|
@ -514,7 +514,7 @@ void* taosDestroyFillInfo(SFillInfo* pFillInfo) {
|
||||||
if (pFillInfo == NULL) {
|
if (pFillInfo == NULL) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
taosMemoryFree(pFillInfo->prev->pData);
|
||||||
taosArrayDestroy(pFillInfo->prev);
|
taosArrayDestroy(pFillInfo->prev);
|
||||||
taosArrayDestroy(pFillInfo->next);
|
taosArrayDestroy(pFillInfo->next);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue