* src/psaux/psobjs.c (ps_table_new): Revert to zeroing.
diff --git a/src/psaux/psobjs.c b/src/psaux/psobjs.c
index 0613474..323c43b 100644
--- a/src/psaux/psobjs.c
+++ b/src/psaux/psobjs.c
@@ -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;