* src/psaux/psobjs.c (ps_table_new): Revert to zeroing.

This commit is contained in:
Alexei Podtelezhnikov 2022-01-21 22:46:35 -05:00
parent 0d2b4952a3
commit 706c79a1da
1 changed files with 2 additions and 2 deletions

View File

@ -78,8 +78,8 @@
table->memory = memory;
if ( FT_QNEW_ARRAY( table->elements, count ) ||
FT_QNEW_ARRAY( table->lengths, count ) )
if ( FT_NEW_ARRAY( table->elements, count ) ||
FT_NEW_ARRAY( table->lengths, count ) )
goto Exit;
table->max_elems = count;