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-09-05 04:58:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-09-05 05:00:52 +0400
commit220fcd43a9e48c3ca7be766433495a54d5471d71 (patch)
treef91a6cc071264d0e3cae36ed58018b4912871e4d /source/blender/editors
parenta7f87cfc0d87b8ebbcdef6ec2aa665fd56bcd2cf (diff)
Fix uninitialized variable use
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/sculpt_paint/paint_image_proj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_image_proj.c b/source/blender/editors/sculpt_paint/paint_image_proj.c
index 40ac2e8902a..ab22b0a5b42 100644
--- a/source/blender/editors/sculpt_paint/paint_image_proj.c
+++ b/source/blender/editors/sculpt_paint/paint_image_proj.c
@@ -2920,7 +2920,7 @@ static void project_paint_begin(ProjPaintState *ps)
MTFace *tf_base;
MTFace **tf_clone;
- MTFace *tf_clone_base;
+ MTFace *tf_clone_base = NULL;
int a, i; /* generic looping vars */
int image_index = -1, face_index;