From: Vinson Lee Date: Sun, 13 Dec 2009 02:42:18 +0000 (-0800) Subject: glsl: Initialize member label of struct slang_operation to NULL. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cd1a09e3bbdb907e3b806e68400804310dc168ce;p=mesa.git glsl: Initialize member label of struct slang_operation to NULL. --- diff --git a/src/mesa/shader/slang/slang_compile_operation.c b/src/mesa/shader/slang/slang_compile_operation.c index 3e2bdbc91ff..be73094ca04 100644 --- a/src/mesa/shader/slang/slang_compile_operation.c +++ b/src/mesa/shader/slang/slang_compile_operation.c @@ -52,6 +52,7 @@ slang_operation_construct(slang_operation * oper) _slang_variable_scope_ctr(oper->locals); oper->fun = NULL; oper->var = NULL; + oper->label = NULL; return GL_TRUE; }