[Mesa-dev] [PATCH] mesa: Fix valgrind uninitialized variable warning

Courtney Goeltzenleuchter courtney at lunarg.com
Fri Feb 14 08:22:55 PST 2014


Initialize field to eliminate valgrind warning.
Signed-off-by: Courtney Goeltzenleuchter <courtney at LunarG.com>
---
 src/mesa/main/texcompress_etc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/mesa/main/texcompress_etc.c b/src/mesa/main/texcompress_etc.c
index f9234b0..97adc86 100644
--- a/src/mesa/main/texcompress_etc.c
+++ b/src/mesa/main/texcompress_etc.c
@@ -350,6 +350,7 @@ etc2_rgb8_parse_block(struct etc2_block *block,
    block->is_t_mode = false;
    block->is_h_mode = false;
    block->is_planar_mode = false;
+   block->opaque = false;
 
    if (punchthrough_alpha)
       block->opaque = src[3] & 0x2;
-- 
1.8.3.2



More information about the mesa-dev mailing list