mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 04:20:08 +01:00
nir/validate: fix crash if entry is null.
we validate assert entry just before this, but since that doesn't stop execution, we need to check entry before the next validation assert. Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
a1d419603f
commit
6b2b150a66
1 changed files with 1 additions and 1 deletions
|
|
@ -388,7 +388,7 @@ validate_var_use(nir_variable *var, validate_state *state)
|
|||
{
|
||||
struct hash_entry *entry = _mesa_hash_table_search(state->var_defs, var);
|
||||
validate_assert(state, entry);
|
||||
if (var->data.mode == nir_var_function_temp)
|
||||
if (entry && var->data.mode == nir_var_function_temp)
|
||||
validate_assert(state, (nir_function_impl *) entry->data == state->impl);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue