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_table_new): Re


From: Alexei Podtelezhnikov (@apodtele)
Subject: [Git][freetype/freetype][master] * src/psaux/psobjs.c (ps_table_new): Revert to zeroing.
Date: Sat, 22 Jan 2022 03:48:48 +0000

Alexei Podtelezhnikov pushed to branch master at FreeType / FreeType

Commits:

1 changed file:

Changes:

  • src/psaux/psobjs.c
    ... ... @@ -78,8 +78,8 @@
    78 78
     
    
    79 79
     
    
    80 80
         table->memory = memory;
    
    81
    -    if ( FT_QNEW_ARRAY( table->elements, count ) ||
    
    82
    -         FT_QNEW_ARRAY( table->lengths,  count ) )
    
    81
    +    if ( FT_NEW_ARRAY( table->elements, count ) ||
    
    82
    +         FT_NEW_ARRAY( table->lengths,  count ) )
    
    83 83
           goto Exit;
    
    84 84
     
    
    85 85
         table->max_elems = count;
    


  • reply via email to

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