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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-02-28 04:51:45 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-02-28 05:03:07 +0300
commit7990105407bc97a1c5a7302ddc0ee36d8d9e9ae0 (patch)
treecf9676e326087d543d633d8c5d5ea52068b98726 /source/blender/depsgraph
parent6bd53cb5411b10a97d0f1375944928ce5d58c6ce (diff)
Code cleanup: fix a few compiler warnings.
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/nodes/deg_node_component.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/nodes/deg_node_component.cc b/source/blender/depsgraph/intern/nodes/deg_node_component.cc
index 8ebf7424c42..755b10c3f1d 100644
--- a/source/blender/depsgraph/intern/nodes/deg_node_component.cc
+++ b/source/blender/depsgraph/intern/nodes/deg_node_component.cc
@@ -166,7 +166,7 @@ string ComponentDepsNode::identifier() const
OperationDepsNode *ComponentDepsNode::find_operation(OperationIDKey key) const
{
- OperationDepsNode *node;
+ OperationDepsNode *node = NULL;
if (operations_map != NULL) {
node = (OperationDepsNode *)BLI_ghash_lookup(operations_map, &key);
}