mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
glsl: Explicitly NULL-check variables before making a dereference.
The constructor currently returns a ir_dereference_variable of error type when provided NULL, but that's about to change in the next commit. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
2cd652f810
commit
dca19a7711
1 changed files with 2 additions and 2 deletions
|
|
@ -1692,14 +1692,14 @@ ast_expression::hir(exec_list *instructions,
|
|||
ir_variable *var =
|
||||
state->symbols->get_variable(this->primary_expression.identifier);
|
||||
|
||||
result = new(ctx) ir_dereference_variable(var);
|
||||
|
||||
if (var != NULL) {
|
||||
var->used = true;
|
||||
result = new(ctx) ir_dereference_variable(var);
|
||||
} else {
|
||||
_mesa_glsl_error(& loc, state, "`%s' undeclared",
|
||||
this->primary_expression.identifier);
|
||||
|
||||
result = ir_call::get_error_instruction(ctx);
|
||||
error_emitted = true;
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue