* src/smooth/ftsmooth.c (ft_smooth_raster_overlap): Limit width.

Segmentation fault reported as

  https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=24729
This commit is contained in:
Alexei Podtelezhnikov 2020-08-25 23:16:27 -04:00
parent cdc009c24a
commit 6730854c39
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,11 @@
2020-08-25 Alexei Podtelezhnikov <apodtele@gmail.com>
* src/smooth/ftsmooth.c (ft_smooth_raster_overlap): Limit width.
Segmentation fault reported as
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=24729
2020-08-22 Werner Lemberg <wl@gnu.org>
* src/truetype/ttgload.c (TT_Get_VMetrics): Add tracing message.

View File

@ -379,6 +379,11 @@
TOrigin target;
/* Reject outlines that are too wide for 16-bit FT_Span. */
/* Other limits are applied upstream with the same error code. */
if ( bitmap->width * SCALE > 0x7FFF )
return FT_THROW( Raster_Overflow );
/* Set up direct rendering to average oversampled spans. */
params.target = bitmap;
params.source = outline;