freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[freetype2] master 6730854: * src/smooth/ftsmooth.c (ft_smooth_raster_ov


From: Alexei Podtelezhnikov
Subject: [freetype2] master 6730854: * src/smooth/ftsmooth.c (ft_smooth_raster_overlap): Limit width.
Date: Tue, 25 Aug 2020 23:17:59 -0400 (EDT)

branch: master
commit 6730854c397130879c64bd766c673b9bccf9c04a
Author: Alexei Podtelezhnikov <apodtele@gmail.com>
Commit: 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
---
 ChangeLog             | 8 ++++++++
 src/smooth/ftsmooth.c | 5 +++++
 2 files changed, 13 insertions(+)

diff --git a/ChangeLog b/ChangeLog
index dc91ab5..0e3b5b5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/src/smooth/ftsmooth.c b/src/smooth/ftsmooth.c
index 3ce1cea..eb5928f 100644
--- a/src/smooth/ftsmooth.c
+++ b/src/smooth/ftsmooth.c
@@ -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;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]