Fixed rare crash in geo_process_node_and_siblings
This commit is contained in:
parent
da56bd7bad
commit
d73216a899
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue