diff options
-rw-r--r-- | src/compiler/nir/nir.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/compiler/nir/nir.c b/src/compiler/nir/nir.c index c9db52ff23d..2741eb6581b 100644 --- a/src/compiler/nir/nir.c +++ b/src/compiler/nir/nir.c @@ -642,6 +642,9 @@ copy_deref_struct(void *mem_ctx, nir_deref_struct *deref) nir_deref * nir_copy_deref(void *mem_ctx, nir_deref *deref) { + if (deref == NULL) + return NULL; + switch (deref->deref_type) { case nir_deref_type_var: return ©_deref_var(mem_ctx, nir_deref_as_var(deref))->deref; |