always zero param type keys

This commit is contained in:
Ryan Fleury
2025-06-17 07:26:17 -07:00
parent 53e6050ee0
commit 5de7c06d3b
+1 -1
View File
@@ -927,7 +927,7 @@ e_push_type_from_key(Arena *arena, E_TypeKey key)
type->byte_size = bit_size_from_arch(e_base_ctx->modules[rdi_idx].arch)/8;
type->direct_type_key = direct_type_key;
type->count = count;
type->param_type_keys = push_array_no_zero(arena, E_TypeKey, type->count);
type->param_type_keys = push_array(arena, E_TypeKey, type->count);
type->arch = e_base_ctx->modules[rdi_idx].arch;
for(U32 idx = 0; idx < type->count; idx += 1)
{