[Bf-blender-cvs] [74e7de2] depsgraph_refactor: Depsgraph: Fix non-initialized operation flags

Sergey Sharybin noreply at git.blender.org
Wed Jan 28 09:41:00 CET 2015


Commit: 74e7de28d8e5189ce20f5d63deaa5608b6ceb68b
Author: Sergey Sharybin
Date:   Wed Jan 28 13:37:30 2015 +0500
Branches: depsgraph_refactor
https://developer.blender.org/rB74e7de28d8e5189ce20f5d63deaa5608b6ceb68b

Depsgraph: Fix non-initialized operation flags

This was in fact root of the issue of victor rig i was having for
quite some time now.

===================================================================

M	source/blender/depsgraph/intern/depsnode_operation.cpp

===================================================================

diff --git a/source/blender/depsgraph/intern/depsnode_operation.cpp b/source/blender/depsgraph/intern/depsnode_operation.cpp
index e921cd1..94e099a 100644
--- a/source/blender/depsgraph/intern/depsnode_operation.cpp
+++ b/source/blender/depsgraph/intern/depsnode_operation.cpp
@@ -55,7 +55,8 @@ const char *DEG_OPNAMES[] = {
 /* Inner Nodes */
 
 OperationDepsNode::OperationDepsNode() :
-    eval_priority(0.0f)
+    eval_priority(0.0f),
+    flag(0)
 {
 }




More information about the Bf-blender-cvs mailing list