freetype-commit
[Top][All Lists]
Advanced

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

[freetype2] master 0607e0e95: Fix initialisation of temp variable in new


From: Werner Lemberg
Subject: [freetype2] master 0607e0e95: Fix initialisation of temp variable in new FT_MulAddFix
Date: Thu, 30 Jun 2022 05:16:05 -0400 (EDT)

branch: master
commit 0607e0e959e9bf47796afe31c16569f046609dfd
Author: Dominik Röttsches <drott@chromium.org>
Commit: Dominik Röttsches <drott@chromium.org>

    Fix initialisation of temp variable in new FT_MulAddFix
    
    src/truetype/ttgxvar.c (FT_MulAddFix): Initialise `temp`.
---
 src/base/ftcalc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/base/ftcalc.c b/src/base/ftcalc.c
index 0f1395d08..34170a582 100644
--- a/src/base/ftcalc.c
+++ b/src/base/ftcalc.c
@@ -1091,7 +1091,7 @@
                 FT_UInt    count )
   {
     FT_UInt   i;
-    FT_Int64  temp;
+    FT_Int64  temp = 0;
 
 
 #ifdef FT_INT64



reply via email to

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