freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[freetype2] master 706c79a1d: * src/psaux/psobjs.c (ps_table_new): Rever


From: Werner Lemberg
Subject: [freetype2] master 706c79a1d: * src/psaux/psobjs.c (ps_table_new): Revert to zeroing.
Date: Fri, 21 Jan 2022 22:49:00 -0500 (EST)

branch: master
commit 706c79a1da4aeb05c331f6ff0a7051e7613d5aba
Author: Alexei Podtelezhnikov <apodtele@gmail.com>
Commit: Alexei Podtelezhnikov <apodtele@gmail.com>

    * src/psaux/psobjs.c (ps_table_new): Revert to zeroing.
---
 src/psaux/psobjs.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/psaux/psobjs.c b/src/psaux/psobjs.c
index 06134740c..323c43ba1 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;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]