shithub: freetype+ttf2subf

Download patch

ref: 90b97a833d71f10ce1f9477826517ad2bbf30569
parent: 44b1ebe51465f0be2dcf2105e41febe139617cd1
author: Alexei Podtelezhnikov <[email protected]>
date: Thu Apr 22 19:00:40 EDT 2021

[psaux] s/FT_ALLOC/FT_QALLOC/ for initialized buffers.

* src/psaux/psobjs.c (ps_table_done, ps_parser_load_field): Do not
zero out the buffer.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,11 @@
-2021-04-20  Alexei Podtelezhnikov  <[email protected]>
+2021-04-22  Alexei Podtelezhnikov  <[email protected]>
+
+	[psaux] s/FT_ALLOC/FT_QALLOC/ for initialized buffers.
+
+	* src/psaux/psobjs.c (ps_table_done, ps_parser_load_field): Do not
+	zero out the buffer.
+
+2021-04-22  Alexei Podtelezhnikov  <[email protected]>
 
 	[base] s/FT_ALLOC/FT_QALLOC/ for initialized buffers.
 
--- a/src/psaux/psobjs.c
+++ b/src/psaux/psobjs.c
@@ -251,7 +251,7 @@
     if ( !old_base )
       return;
 
-    if ( FT_ALLOC( table->block, table->cursor ) )
+    if ( FT_QALLOC( table->block, table->cursor ) )
       return;
     FT_MEM_COPY( table->block, old_base, table->cursor );
     shift_elements( table, old_base );
@@ -979,7 +979,7 @@
     }
 
     len = (FT_UInt)( cur - *cursor );
-    if ( cur >= limit || FT_ALLOC( result, len + 1 ) )
+    if ( cur >= limit || FT_QALLOC( result, len + 1 ) )
       return 0;
 
     /* now copy the string */
@@ -1193,7 +1193,7 @@
             *(FT_String**)q = NULL;
           }
 
-          if ( FT_ALLOC( string, len + 1 ) )
+          if ( FT_QALLOC( string, len + 1 ) )
             goto Exit;
 
           FT_MEM_COPY( string, cur, len );