From: Quentin Glidic <[email protected]> libweston/gl-renderer.c: In function 'compress_bands': libweston/gl-renderer.c:481:6: warning: 'merged' may be used uninitialized in this function [-Wmaybe-uninitialized] if (!merged) { ^
Warning produced by GCC 5.3 and 6.1, with -Og. Signed-off-by: Quentin Glidic <[email protected]> Reviewed-by: Yong Bakos <[email protected]> --- libweston/gl-renderer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libweston/gl-renderer.c b/libweston/gl-renderer.c index 28c0b50..73b6ccc 100644 --- a/libweston/gl-renderer.c +++ b/libweston/gl-renderer.c @@ -455,7 +455,7 @@ static int compress_bands(pixman_box32_t *inrects, int nrects, pixman_box32_t **outrects) { - bool merged; + bool merged = false; pixman_box32_t *out, merge_rect; int i, j, nout; -- 2.9.0 _______________________________________________ wayland-devel mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/wayland-devel
