Fixed rare crash in geo_process_node_and_siblings

This commit is contained in:
MysterD 2022-04-23 01:12:12 -07:00
parent da56bd7bad
commit d73216a899
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; ((struct GraphNodeObject *) curGraphNode)->throwMatrix = NULL;
} }
} }
} while (iterateChildren && (curGraphNode = curGraphNode->next) != firstNode); } while (iterateChildren && curGraphNode && (curGraphNode = curGraphNode->next) != firstNode);
} }
/** /**