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:
authorCampbell Barton <ideasman42@gmail.com>2018-01-04 08:15:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-01-04 08:15:31 +0300
commit727aab5af414ed774226fa5ee77aeef2ca61b520 (patch)
tree08b301014456117970955d008e69a284aa8286e0 /source/blender/makesrna/intern/rna_access.c
parent7fc1f42aae79bc04608d7c8c26f077ff7d4fbbec (diff)
Fix uninitialized stack use in rna diff override
Diffstat (limited to 'source/blender/makesrna/intern/rna_access.c')
-rw-r--r--source/blender/makesrna/intern/rna_access.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c
index da84f51cea2..6197ecb3ee5 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -7147,7 +7147,7 @@ static int rna_property_override_diff(
return 0;
}
- bool override_changed;
+ bool override_changed = false;
int diff_flags = flags;
if ((RNA_property_flag(prop_a) & PROP_OVERRIDABLE_STATIC) == 0) {
diff_flags &= ~RNA_OVERRIDE_COMPARE_CREATE;