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>2014-04-01 09:46:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-01 09:53:15 +0400
commite95fd792582324bd93077358e0393e78273a76d3 (patch)
tree6551c12588f5f3729dd4826955d196a267c643f8 /source/blender/editors/animation/drivers.c
parent11299f5ff405a7668ae06ee7ea5495b624f9ce9a (diff)
Correction for error in own recent commit (makesrna c++ api, un-init var)
Diffstat (limited to 'source/blender/editors/animation/drivers.c')
-rw-r--r--source/blender/editors/animation/drivers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/drivers.c b/source/blender/editors/animation/drivers.c
index 808eb6656d3..8f3fa66552c 100644
--- a/source/blender/editors/animation/drivers.c
+++ b/source/blender/editors/animation/drivers.c
@@ -169,7 +169,7 @@ int ANIM_add_driver(ReportList *reports, ID *id, const char rna_path[], int arra
PropertyRNA *prop;
FCurve *fcu;
int array_index_max;
- int done_tot;
+ int done_tot = 0;
/* validate pointer first - exit if failure */
RNA_id_pointer_create(id, &id_ptr);