shithub: freetype+ttf2subf

Download patch

ref: 986d503f4a89b13c17ddb5c1fa0cc1dc8ccc3676
parent: 30ca63d4fb5933cad2547a73f78c25b920266d44
author: Alexei Podtelezhnikov <apodtele@gmail.com>
date: Sun Oct 17 05:14:27 EDT 2021

* src/sfnt/ttload.c (tt_face_load_name): NULL-initialize langTag.

Another attempt to fix fallout reported as
  https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=40024

git/fs: mount .git/fs: mount/attach disallowed
--- a/src/sfnt/ttload.c
+++ b/src/sfnt/ttload.c
@@ -939,6 +939,9 @@
             /* invalid entry; ignore it */
             entry->stringLength = 0;
           }
+
+          /* mark the string as not yet loaded */
+          entry->string = NULL;
         }
       }