fix dbgi key array copy

This commit is contained in:
Ryan Fleury
2024-11-11 16:15:15 -08:00
parent f9abd3efb9
commit 420c2ec208
+1
View File
@@ -85,6 +85,7 @@ internal DI_KeyArray
di_key_array_copy(Arena *arena, DI_KeyArray *src)
{
DI_KeyArray dst = {0};
dst.count = src->count;
dst.v = push_array(arena, DI_Key, dst.count);
for EachIndex(idx, dst.count)
{