From: Nicolai Hähnle Date: Sat, 24 Jun 2017 08:27:18 +0000 (+0200) Subject: glsl: explicitly zero out padding to gl_shader_variable bitfield X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=210ebd4b9c1b510ff1b29a81aa7512ea77056966;p=mesa.git glsl: explicitly zero out padding to gl_shader_variable bitfield Otherwise, the padding bits remain undefined, which leads to valgrind errors when storing the gl_shader_variable in the disk cache. v2: use rzalloc instead of an explicit padding member variable Reviewed-by: Marek Olšák Reviewed-by: Timothy Arceri --- diff --git a/src/compiler/glsl/linker.cpp b/src/compiler/glsl/linker.cpp index 6ddf0cbb0ce..b4784c51199 100644 --- a/src/compiler/glsl/linker.cpp +++ b/src/compiler/glsl/linker.cpp @@ -3732,7 +3732,10 @@ create_shader_variable(struct gl_shader_program *shProg, bool use_implicit_location, int location, const glsl_type *outermost_struct_type) { - gl_shader_variable *out = ralloc(shProg, struct gl_shader_variable); + /* Allocate zero-initialized memory to ensure that bitfield padding + * is zero. + */ + gl_shader_variable *out = rzalloc(shProg, struct gl_shader_variable); if (!out) return NULL;