Initialize array pointer in dynamic array

Oops. I guess I was using calloc in the vulkan branch.
This commit is contained in:
Bill Currie 2020-03-20 14:43:52 +09:00
parent 52a46f5d5c
commit 9678eba59b

View file

@ -105,6 +105,7 @@
__auto_type ar = (array); \
ar->size = ar->maxSize = 0; \
ar->grow = (growSize); \
ar->a = 0; \
} while (0)
/** Clear the array.