diff options
| author | Kenneth Graunke <kenneth@whitecape.org> | 2010-07-02 17:12:23 -0700 | 
|---|---|---|
| committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-07-06 16:03:33 -0700 | 
| commit | 6bc432e14e12c280bc53e57338bf86fbf8d26885 (patch) | |
| tree | f93f94e8deb9d345e661dc5d148c5f8c7145dfe6 /src | |
| parent | c63a1db81f56cc2021fe1fb2411c327f720b0e09 (diff) | |
ir_constant_expression: Initialize op[0] and op[1] to NULL.
This makes it easy to check if there is a second argument.
Diffstat (limited to 'src')
| -rw-r--r-- | src/glsl/ir_constant_expression.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/glsl/ir_constant_expression.cpp b/src/glsl/ir_constant_expression.cpp index 1b81017698..6d6ee093d7 100644 --- a/src/glsl/ir_constant_expression.cpp +++ b/src/glsl/ir_constant_expression.cpp @@ -129,7 +129,7 @@ void  ir_constant_visitor::visit(ir_expression *ir)  {     value = NULL; -   ir_constant *op[2]; +   ir_constant *op[2] = { NULL, NULL };     unsigned int operand, c;     ir_constant_data data; | 
