summaryrefslogtreecommitdiff
path: root/exa
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2011-10-20 11:44:28 +0100
committerAdam Jackson <ajax@redhat.com>2015-09-23 10:43:39 -0400
commit4c7cefe24001279a558dd875949d40ede49ef702 (patch)
tree665773fa3f1ceb2247b342b26f3b629142fb71ae /exa
parent668cce3f5a175109442f0ef9b50354db95e66b44 (diff)
downloadxserver-4c7cefe24001279a558dd875949d40ede49ef702.tar.gz
exa: initialise mask_off_x and mask_off_y
These get used at the end of the function in a calculation, even though the result isn't used its not pretty. Pointed out by coverity. Signed-off-by: Dave Airlie <airlied@redhat.com> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'exa')
-rw-r--r--exa/exa_render.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exa/exa_render.c b/exa/exa_render.c
index e3e552697..fc3ddea79 100644
--- a/exa/exa_render.c
+++ b/exa/exa_render.c
@@ -636,7 +636,7 @@ exaTryDriverComposite(CARD8 op,
RegionRec region;
BoxPtr pbox;
int nbox;
- int src_off_x, src_off_y, mask_off_x, mask_off_y, dst_off_x, dst_off_y;
+ int src_off_x, src_off_y, mask_off_x = 0, mask_off_y = 0, dst_off_x, dst_off_y;
PixmapPtr pSrcPix = NULL, pMaskPix = NULL, pDstPix;
ExaPixmapPrivPtr pSrcExaPix = NULL, pMaskExaPix = NULL, pDstExaPix;