diff --git a/ChangeLog b/ChangeLog index ed7651ff6..66b28b158 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2016-02-16 Alexei Podtelezhnikov + + [smooth] Fix integer overflow (#47114). + + * src/smooth/ftgrays.c (TArea): Make it unconditionally `long'. + 2016-02-15 Werner Lemberg * src/cff/cffparse.c (cff_parse_multiple_master): Improve tracing. diff --git a/src/smooth/ftgrays.c b/src/smooth/ftgrays.c index dac332dec..9411cf90f 100644 --- a/src/smooth/ftgrays.c +++ b/src/smooth/ftgrays.c @@ -388,25 +388,7 @@ typedef ptrdiff_t FT_PtrDist; typedef long TCoord; /* integer scanline/pixel coordinate */ typedef long TPos; /* sub-pixel coordinate */ - - /* determine the type used to store cell areas. This normally takes at */ - /* least PIXEL_BITS*2 + 1 bits. On 16-bit systems, we need to use */ - /* `long' instead of `int', otherwise bad things happen */ - -#if PIXEL_BITS <= 7 - - typedef int TArea; - -#else /* PIXEL_BITS >= 8 */ - - /* approximately determine the size of integers using an ANSI-C header */ -#if FT_UINT_MAX == 0xFFFFU - typedef long TArea; -#else - typedef int TArea; -#endif - -#endif /* PIXEL_BITS >= 8 */ + typedef long TArea; /* cell areas, coordinate products */ /* maximum number of gray spans in a call to the span callback */