diff options
author | Marek Olšák <[email protected]> | 2017-03-30 17:11:41 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-03-30 17:14:47 +0200 |
commit | 65732a8ff632e6aa32af521c9d6531cbb4fab030 (patch) | |
tree | 2a94feddb7a62f8fe8911a1bef72809461603ac0 | |
parent | 9f5dbbe030a069b9c362a48fdcd23d4d6221894f (diff) |
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]
-rw-r--r-- | src/gallium/drivers/softpipe/sp_compute.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |