* src/psaux/psobjs.c (ps_table_new): Revert to zeroing.
This commit is contained in:
parent
0d2b4952a3
commit
706c79a1da
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue