shithub: freetype+ttf2subf

Download patch

ref: a8e8d9d7a41b8c2c84d243f547d0c1615d21d651
parent: 9870b6c07e2cd9f195f82aad4bccd754d70e8601
author: Alexei Podtelezhnikov <apodtele@gmail.com>
date: Sun Sep 12 19:21:32 EDT 2021

[cache, psaux] Remove zeros.

* src/cache/ftcmru.c (FTC_MruList_New): Remove initialization.
* src/psaux/psstack.c (cf2_stack_init): Ditto.

git/fs: mount .git/fs: mount/attach disallowed
--- a/src/cache/ftcmru.c
+++ b/src/cache/ftcmru.c
@@ -237,7 +237,7 @@
                    FTC_MruNode  *anode )
   {
     FT_Error     error;
-    FTC_MruNode  node   = NULL;
+    FTC_MruNode  node;
     FT_Memory    memory = list->memory;
 
 
--- a/src/psaux/psstack.c
+++ b/src/psaux/psstack.c
@@ -54,9 +54,8 @@
                   FT_Error*  e,
                   FT_UInt    stackSize )
   {
-    FT_Error  error = FT_Err_Ok;     /* for FT_NEW */
-
-    CF2_Stack  stack = NULL;
+    FT_Error   error;     /* for FT_QNEW */
+    CF2_Stack  stack;
 
 
     if ( FT_QNEW( stack ) )