freetype-commit
[Top][All Lists]
Advanced

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

[Git][freetype/freetype][master] Fix initialisation of temp variable in


From: Werner Lemberg (@wl)
Subject: [Git][freetype/freetype][master] Fix initialisation of temp variable in new FT_MulAddFix
Date: Thu, 30 Jun 2022 09:15:58 +0000

Werner Lemberg pushed to branch master at FreeType / FreeType

Commits:

  • 0607e0e9
    by Dominik Röttsches at 2022-06-30T10:55:50+03:00
    Fix initialisation of temp variable in new FT_MulAddFix
    
    src/truetype/ttgxvar.c (FT_MulAddFix): Initialise `temp`.
    

1 changed file:

Changes:

  • src/base/ftcalc.c
    ... ... @@ -1091,7 +1091,7 @@
    1091 1091
                     FT_UInt    count )
    
    1092 1092
       {
    
    1093 1093
         FT_UInt   i;
    
    1094
    -    FT_Int64  temp;
    
    1094
    +    FT_Int64  temp = 0;
    
    1095 1095
     
    
    1096 1096
     
    
    1097 1097
     #ifdef FT_INT64
    


  • reply via email to

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