shithub: freetype+ttf2subf

Download patch

ref: 81b81feb628a549c65ab7401c4d5dacb27a77827
parent: 904ad21266737d9680ebf8691b9dce07f50f4f86
author: Alexei Podtelezhnikov <apodtele@gmail.com>
date: Fri Jan 14 13:22:23 EST 2022

* src/base/fthash.c (hash_insert): Avoid unnecessary zeroing.

git/fs: mount .git/fs: mount/attach disallowed
--- a/src/base/fthash.c
+++ b/src/base/fthash.c
@@ -243,7 +243,7 @@
     nn = *bp;
     if ( !nn )
     {
-      if ( FT_NEW( nn ) )
+      if ( FT_QNEW( nn ) )
         goto Exit;
       *bp = nn;