fix: event_window memory leak
This commit is contained in:
parent
aae2de07af
commit
024824fb3d
|
@ -1103,6 +1103,8 @@ void nodesDestroyNode(SNode* pNode) {
|
||||||
nodesDestroyNode(pLogicNode->pTspk);
|
nodesDestroyNode(pLogicNode->pTspk);
|
||||||
nodesDestroyNode(pLogicNode->pTsEnd);
|
nodesDestroyNode(pLogicNode->pTsEnd);
|
||||||
nodesDestroyNode(pLogicNode->pStateExpr);
|
nodesDestroyNode(pLogicNode->pStateExpr);
|
||||||
|
nodesDestroyNode(pLogicNode->pStartCond);
|
||||||
|
nodesDestroyNode(pLogicNode->pEndCond);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case QUERY_NODE_LOGIC_PLAN_FILL: {
|
case QUERY_NODE_LOGIC_PLAN_FILL: {
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue