From 65732a8ff632e6aa32af521c9d6531cbb4fab030 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Thu, 30 Mar 2017 17:11:41 +0200 Subject: [PATCH] softpipe: fix a maybe-uninitialized warning /home/marek/dev/mesa-main/src/gallium/drivers/softpipe/sp_compute.c:178: warning: 'grid_size' may be used uninitialized in this function [-Wmaybe-uninitialized] --- src/gallium/drivers/softpipe/sp_compute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/softpipe/sp_compute.c b/src/gallium/drivers/softpipe/sp_compute.c index 53f7a0beb77..31252255bd4 100644 --- a/src/gallium/drivers/softpipe/sp_compute.c +++ b/src/gallium/drivers/softpipe/sp_compute.c @@ -175,7 +175,7 @@ softpipe_launch_grid(struct pipe_context *context, int bwidth, bheight, bdepth; int w, h, d, i; int g_w, g_h, g_d; - uint32_t grid_size[3]; + uint32_t grid_size[3] = {0}; void *local_mem = NULL; softpipe_update_compute_samplers(softpipe); -- 2.30.2