mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 23:10:11 +01:00
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:
parent
e1c7f3af0c
commit
352e62c3c2
1 changed files with 1 additions and 0 deletions
|
|
@ -26,6 +26,7 @@
|
|||
|
||||
ir_hierarchical_visitor::ir_hierarchical_visitor()
|
||||
{
|
||||
this->base_ir = NULL;
|
||||
this->callback = NULL;
|
||||
this->data = NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue