From 96662cd459e573690bc8bec1543958d15b8991ec Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Mon, 8 Dec 2025 07:51:49 +1000 Subject: [PATCH] nak/cmat: free the type mapping hash table. Just noticed this on review. Cc: mesa-stable Reviewed-by: Karol Herbst Part-of: --- src/nouveau/compiler/nak_nir_lower_cmat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nouveau/compiler/nak_nir_lower_cmat.c b/src/nouveau/compiler/nak_nir_lower_cmat.c index 49315f23bdb..c12cf28bce6 100644 --- a/src/nouveau/compiler/nak_nir_lower_cmat.c +++ b/src/nouveau/compiler/nak_nir_lower_cmat.c @@ -1104,5 +1104,6 @@ nak_nir_lower_cmat(nir_shader *nir, const struct nak_compiler *nak) progress = true; } + _mesa_hash_table_destroy(type_mapping, NULL); return progress; }