[truetype] Integer overflow issues.
Reported as https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=7739 * src/truetype/ttinterp.c (Ins_CEILING): Use FT_PIX_CEIL_LONG.
This commit is contained in:
parent
632a11f91f
commit
2a1597826a
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
2018-04-17 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[truetype] Integer overflow issues.
|
||||
|
||||
Reported as
|
||||
|
||||
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=7739
|
||||
|
||||
* src/truetype/ttinterp.c (Ins_CEILING): Use FT_PIX_CEIL_LONG.
|
||||
|
||||
2018-04-16 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[truetype] Integer overflow issues.
|
||||
|
@ -2954,7 +2954,7 @@
|
||||
static void
|
||||
Ins_CEILING( FT_Long* args )
|
||||
{
|
||||
args[0] = FT_PIX_CEIL( args[0] );
|
||||
args[0] = FT_PIX_CEIL_LONG( args[0] );
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user