summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2009-12-23 18:00:06 -0800
committerVinson Lee <vlee@vmware.com>2009-12-23 18:00:06 -0800
commit098f10c2709a33bb5f35d52a42818ce7cbcaadb5 (patch)
tree8934cfc8adfc43f3012eba5c22ee9abf133a2f20
parent261c3cd530437362f906ef78459ffda7ab2b2077 (diff)
glsl: Initialize member a_obj of struct slang_operation.
-rw-r--r--src/mesa/shader/slang/slang_compile_operation.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/shader/slang/slang_compile_operation.c b/src/mesa/shader/slang/slang_compile_operation.c
index be73094ca04..3a15d9d3ab5 100644
--- a/src/mesa/shader/slang/slang_compile_operation.c
+++ b/src/mesa/shader/slang/slang_compile_operation.c
@@ -46,6 +46,7 @@ slang_operation_construct(slang_operation * oper)
oper->literal_size = 1;
oper->array_constructor = GL_FALSE;
oper->a_id = SLANG_ATOM_NULL;
+ oper->a_obj = SLANG_ATOM_NULL;
oper->locals = _slang_variable_scope_new(NULL);
if (oper->locals == NULL)
return GL_FALSE;