freetype-commit
[Top][All Lists]
Advanced

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

[Git][freetype/freetype][master] * src/psaux/psobjs.c (ps_parser_load_fi


From: Alexei Podtelezhnikov (@apodtele)
Subject: [Git][freetype/freetype][master] * src/psaux/psobjs.c (ps_parser_load_field): Tweak allocation macro.
Date: Fri, 07 May 2021 03:47:31 +0000

Alexei Podtelezhnikov pushed to branch master at FreeType / FreeType

Commits:

2 changed files:

Changes:

  • ChangeLog
    1
    +2021-05-06  Alexei Podtelezhnikov  <apodtele@gmail.com>
    
    2
    +
    
    3
    +	* src/psaux/psobjs.c (ps_parser_load_field): Tweak allocation macro.
    
    4
    +
    
    1 5
     2021-05-06  Alexei Podtelezhnikov  <apodtele@gmail.com>
    
    2 6
     
    
    3 7
     	* src/sfnt/sfobjs.c (sfnt_load_face): Tweak allocation macro.
    

  • src/psaux/psobjs.c
    ... ... @@ -1248,7 +1248,7 @@
    1248 1248
               FT_UInt    i;
    
    1249 1249
     
    
    1250 1250
     
    
    1251
    -          if ( FT_NEW_ARRAY( temp, max_objects * 4 ) )
    
    1251
    +          if ( FT_QNEW_ARRAY( temp, max_objects * 4 ) )
    
    1252 1252
                 goto Exit;
    
    1253 1253
     
    
    1254 1254
               for ( i = 0; i < 4; i++ )
    


  • reply via email to

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