freetype-commit
[Top][All Lists]
Advanced

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

[freetype2] master 1e525c6: [bzip2, gzip] s/FT_ALLOC/FT_QALLOC/ for init


From: Werner Lemberg
Subject: [freetype2] master 1e525c6: [bzip2, gzip] s/FT_ALLOC/FT_QALLOC/ for initialized buffers.
Date: Fri, 23 Apr 2021 08:25:17 -0400 (EDT)

branch: master
commit 1e525c62ae5166776c6badab0e45656370b2b344
Author: Alexei Podtelezhnikov <apodtele@gmail.com>
Commit: Alexei Podtelezhnikov <apodtele@gmail.com>

    [bzip2,gzip] s/FT_ALLOC/FT_QALLOC/ for initialized buffers.
    
    * src/bzip2/ftbzip2.c (ft_bzip2_alloc): Do not zero out the buffer.
    * src/gzip/ftgzip.c (ft_gzip_alloc, FT_Stream_OpenGzip): Ditto.
---
 ChangeLog           | 7 +++++++
 src/bzip2/ftbzip2.c | 2 +-
 src/gzip/ftgzip.c   | 4 ++--
 3 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index a94e831..71942e8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2021-04-23  Alexei Podtelezhnikov  <apodtele@gmail.com>
 
+       [bzip2,gzip] s/FT_ALLOC/FT_QALLOC/ for initialized buffers.
+
+       * src/bzip2/ftbzip2.c (ft_bzip2_alloc): Do not zero out the buffer.
+       * src/gzip/ftgzip.c (ft_gzip_alloc, FT_Stream_OpenGzip): Ditto.
+
+2021-04-23  Alexei Podtelezhnikov  <apodtele@gmail.com>
+
        [pcf,bdf,winfonts] s/FT_ALLOC/FT_QALLOC/ for initialized buffers.
 
        * src/pcf/pcfread.c (pcf_interpret_style): Do not zero out the buffer.
diff --git a/src/bzip2/ftbzip2.c b/src/bzip2/ftbzip2.c
index dc218a6..3df7496 100644
--- a/src/bzip2/ftbzip2.c
+++ b/src/bzip2/ftbzip2.c
@@ -70,7 +70,7 @@
     FT_Pointer  p  = NULL;
 
 
-    (void)FT_ALLOC( p, sz );
+    (void)FT_QALLOC( p, sz );
     return p;
   }
 
diff --git a/src/gzip/ftgzip.c b/src/gzip/ftgzip.c
index 57acd4a..064b8f5 100644
--- a/src/gzip/ftgzip.c
+++ b/src/gzip/ftgzip.c
@@ -130,7 +130,7 @@
     FT_Pointer  p  = NULL;
 
 
-    (void)FT_ALLOC( p, sz );
+    (void)FT_QALLOC( p, sz );
     return p;
   }
 
@@ -671,7 +671,7 @@
         FT_Byte*  zip_buff = NULL;
 
 
-        if ( !FT_ALLOC( zip_buff, zip_size ) )
+        if ( !FT_QALLOC( zip_buff, zip_size ) )
         {
           FT_ULong  count;
 



reply via email to

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