Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Poirier <theeth@yahoo.com>2008-11-05 23:15:32 +0300
committerMartin Poirier <theeth@yahoo.com>2008-11-05 23:15:32 +0300
commita405ed75fe830bd3ce110a94452af093a890bd04 (patch)
treedac31ffc97a1ca255edbf330aaf68064159f18be /source/blender/blenlib
parent571520e976ce76dadbcfd319d908354ace182a14 (diff)
Sketch retargetting. Templating from other armature objects.
Moving stuff home, saving doesn't work ok yet, will finish this later today, demo video when done. Also a couple of bug fixes for crashing and some text reformulation and the like.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/graph.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/graph.c b/source/blender/blenlib/intern/graph.c
index 8f35b38379e..e2ed8f11ee2 100644
--- a/source/blender/blenlib/intern/graph.c
+++ b/source/blender/blenlib/intern/graph.c
@@ -1033,6 +1033,11 @@ void BLI_markdownSymmetry(BGraph *graph, BNode *root_node, float limit)
BNode *node;
BArc *arc;
+ if (root_node == NULL)
+ {
+ return;
+ }
+
if (BLI_isGraphCyclic(graph))
{
return;