glsl: Fix uninitialized member in ir_hierarchical_vistor constructor.

Class member base_ir was not initialized by the default constructor.
This commit is contained in:
Vinson Lee 2010-08-18 16:10:15 -07:00
parent e1c7f3af0c
commit 352e62c3c2
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@
ir_hierarchical_visitor::ir_hierarchical_visitor()
{
this->base_ir = NULL;
this->callback = NULL;
this->data = NULL;
}