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:
authorLukas Toenne <lukas.toenne@googlemail.com>2011-09-07 14:09:24 +0400
committerLukas Toenne <lukas.toenne@googlemail.com>2011-09-07 14:09:24 +0400
commitbeb6ac217b687052d89cfddc28e84cbbc3105b90 (patch)
tree528baac66a2aefa5b7364239dbe47866d95a0f26 /source/blender
parent520778163debe82b8cebe9ddec6ab4111ab2d6bd (diff)
Initialize the exec data in for composite with the node tree pointer. Doesn't matter now since composites are not executed in parallel, but just to be safe.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/nodes/composite/node_composite_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/composite/node_composite_tree.c b/source/blender/nodes/composite/node_composite_tree.c
index 4fc5e23e26a..018ec0ad6b9 100644
--- a/source/blender/nodes/composite/node_composite_tree.c
+++ b/source/blender/nodes/composite/node_composite_tree.c
@@ -526,7 +526,7 @@ void ntreeCompositExecTree(bNodeTree *ntree, RenderData *rd, int do_preview)
ListBase threads;
ThreadData thdata;
int totnode, curnode, rendering= 1, n;
- bNodeTreeExec *exec= NULL;
+ bNodeTreeExec *exec= ntree->execdata;
if(ntree==NULL) return;