ref: 706c79a1da4aeb05c331f6ff0a7051e7613d5aba
parent: 0d2b4952a37218cbe82fb79a40784c01ca172b56
author: Alexei Podtelezhnikov <apodtele@gmail.com>
date: Fri Jan 21 17:46:35 EST 2022
* src/psaux/psobjs.c (ps_table_new): Revert to zeroing.
--- 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;