Fix use of uninitialized value in depsgraph.

This commit is contained in:
Brecht Van Lommel 2018-05-31 14:15:25 +02:00
parent 14c55a5828
commit 1bc801e020
1 changed files with 1 additions and 0 deletions

View File

@ -99,6 +99,7 @@ Depsgraph::Depsgraph(Scene *scene,
id_hash = BLI_ghash_ptr_new("Depsgraph id hash");
entry_tags = BLI_gset_ptr_new("Depsgraph entry_tags");
debug_flags = G.debug;
memset(id_type_updated, 0, sizeof(id_type_updated));
}
Depsgraph::~Depsgraph()