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>2019-03-07 14:47:42 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-03-07 21:41:02 +0300
commit99ac2dea35c5895fb65fc121e3f71799b238cb57 (patch)
tree563535668ab1b3d65e92a394e2f62088ae57eb28 /source/blender/editors/sculpt_paint
parentb38b0cdb0dc3604c3ec2d7627897ba595de44646 (diff)
Cleanup: fix compiler warnings.
Diffstat (limited to 'source/blender/editors/sculpt_paint')
-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 e39abd591cf..7e767a6161f 100644
--- a/source/blender/editors/sculpt_paint/paint_image_proj.c
+++ b/source/blender/editors/sculpt_paint/paint_image_proj.c
@@ -1185,7 +1185,7 @@ static VertSeam *find_adjacent_seam(const ProjPaintState *ps, uint loop_index, u
{
ListBase *vert_seams = &ps->vertSeams[vert_index];
VertSeam *seam = vert_seams->first;
- VertSeam *adjacent;
+ VertSeam *adjacent = NULL;
while (seam->loop != loop_index) {
seam = seam->next;