Fixed rare crash in geo_process_node_and_siblings

This commit is contained in:
MysterD 2022-04-23 01:12:12 -07:00
parent 163ab1b277
commit 22f39d3933
1 changed files with 1 additions and 1 deletions

View File

@ -1430,7 +1430,7 @@ void geo_process_node_and_siblings(struct GraphNode *firstNode) {
((struct GraphNodeObject *) curGraphNode)->throwMatrix = NULL;
}
}
} while (iterateChildren && (curGraphNode = curGraphNode->next) != firstNode);
} while (iterateChildren && curGraphNode && (curGraphNode = curGraphNode->next) != firstNode);
}
/**