diff options
author | Adam Jackson <ajax@redhat.com> | 2018-04-05 12:35:59 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2018-04-05 14:18:36 -0400 |
commit | be99072a1a20af44d2457b8c86bd9041f61efa79 (patch) | |
tree | a6832794f1a43669327f9b27e901800138b29d6b /hw/dmx | |
parent | c3b190f9da3a8cd6f98c127220683dd20aed0f9b (diff) |
dmx: Fix a read-from-uninitialized warning
../hw/dmx/dmxpixmap.c: In function ‘dmxBitmapToRegion’:
../include/regionstr.h:174:22: warning: ‘Box.x1’ may be used uninitialized in this function [-Wmaybe-uninitialized]
(_pReg)->extents = *(_pBox);
~~~~~~~~~~~~~~~~~^~~~~~~~~~
../hw/dmx/dmxpixmap.c:208:12: note: ‘Box.x1’ was declared here
BoxRec Box;
^~~
Signed-off-by: Adam Jackson <ajax@redhat.com>
Acked-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw/dmx')
-rw-r--r-- | hw/dmx/dmxpixmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/dmx/dmxpixmap.c b/hw/dmx/dmxpixmap.c index 17aca9224..7b317eaef 100644 --- a/hw/dmx/dmxpixmap.c +++ b/hw/dmx/dmxpixmap.c @@ -205,7 +205,7 @@ dmxBitmapToRegion(PixmapPtr pPixmap) RegionPtr pReg, pTmpReg; int x, y; unsigned long previousPixel, currentPixel; - BoxRec Box; + BoxRec Box = { 0, }; Bool overlap; if (!dmxScreen->beDisplay) { |