* src/base/ftobjs.c (ft_glyphslot_preset_bitmap): Fix integer
overflow. Reported as https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3539
This commit is contained in:
parent
2e58808d48
commit
c3083e4595
@ -1,3 +1,12 @@
|
||||
2017-10-05 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/base/ftobjs.c (ft_glyphslot_preset_bitmap): Fix integer
|
||||
overflow.
|
||||
|
||||
Reported as
|
||||
|
||||
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3539
|
||||
|
||||
2017-10-05 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
Fix compiler warnings.
|
||||
|
@ -419,8 +419,8 @@
|
||||
cbox.yMax = FT_PIX_CEIL( cbox.yMax );
|
||||
}
|
||||
|
||||
x_shift -= cbox.xMin;
|
||||
y_shift -= cbox.yMin;
|
||||
x_shift = SUB_LONG( x_shift, cbox.xMin );
|
||||
y_shift = SUB_LONG( y_shift, cbox.yMin );
|
||||
|
||||
x_left = cbox.xMin >> 6;
|
||||
y_top = cbox.yMax >> 6;
|
||||
|
Loading…
Reference in New Issue
Block a user