Fix initialisation of temp variable in new FT_MulAddFix
src/truetype/ttgxvar.c (FT_MulAddFix): Initialise `temp`.
This commit is contained in:
parent
dece953516
commit
0607e0e959
|
@ -1091,7 +1091,7 @@
|
|||
FT_UInt count )
|
||||
{
|
||||
FT_UInt i;
|
||||
FT_Int64 temp;
|
||||
FT_Int64 temp = 0;
|
||||
|
||||
|
||||
#ifdef FT_INT64
|
||||
|
|
Loading…
Reference in New Issue