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/space_image
parentb38b0cdb0dc3604c3ec2d7627897ba595de44646 (diff)
Cleanup: fix compiler warnings.
Diffstat (limited to 'source/blender/editors/space_image')
-rw-r--r--source/blender/editors/space_image/image_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c
index 865f4be5d5b..93f3acdfa87 100644
--- a/source/blender/editors/space_image/image_ops.c
+++ b/source/blender/editors/space_image/image_ops.c
@@ -3011,7 +3011,7 @@ static void image_sample_rect_color_ubyte(
const ImBuf *ibuf, const rcti *rect,
uchar r_col[4], float r_col_linear[4])
{
- uint col_accum_ub[4];
+ uint col_accum_ub[4] = {0, 0, 0, 0};
zero_v4(r_col_linear);
int col_tot = 0;
int coord[2];