freetype-commit
[Top][All Lists]
Advanced

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

[freetype2] master 134de09: [base] Integer overflow.


From: Werner LEMBERG
Subject: [freetype2] master 134de09: [base] Integer overflow.
Date: Wed, 12 Jul 2017 16:16:51 -0400 (EDT)

branch: master
commit 134de096e07c4b700ccff5226fcfe4c90ae2ed04
Author: Werner Lemberg <address@hidden>
Commit: Werner Lemberg <address@hidden>

    [base] Integer overflow.
    
    Reported as
    
      https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2573
    
    * src/base/ftobjs.c (ft_glyphslot_grid_fit_metrics): Use
    FT_PIX_CEIL_LONG and FT_PIX_ROUND_LONG.
---
 ChangeLog         | 11 +++++++++++
 src/base/ftobjs.c | 20 ++++++++++----------
 2 files changed, 21 insertions(+), 10 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 708c71a..d9bc844 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
 2017-07-12  Werner Lemberg  <address@hidden>
 
+       [base] Integer overflow.
+
+       Reported as
+
+         https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2573
+
+       * src/base/ftobjs.c (ft_glyphslot_grid_fit_metrics): Use
+       FT_PIX_CEIL_LONG and FT_PIX_ROUND_LONG.
+
+2017-07-12  Werner Lemberg  <address@hidden>
+
        * src/truetype/ttpload.c (tt_face_get_location): Off-by-one typo.
 
        Also improve tracing message.
diff --git a/src/base/ftobjs.c b/src/base/ftobjs.c
index e190de3..1d8bc2d 100644
--- a/src/base/ftobjs.c
+++ b/src/base/ftobjs.c
@@ -579,12 +579,12 @@
     if ( vertical )
     {
       metrics->horiBearingX = FT_PIX_FLOOR( metrics->horiBearingX );
-      metrics->horiBearingY = FT_PIX_CEIL ( metrics->horiBearingY );
+      metrics->horiBearingY = FT_PIX_CEIL_LONG( metrics->horiBearingY );
 
-      right  = FT_PIX_CEIL( ADD_LONG( metrics->vertBearingX,
-                                      metrics->width ) );
-      bottom = FT_PIX_CEIL( ADD_LONG( metrics->vertBearingY,
-                                      metrics->height ) );
+      right  = FT_PIX_CEIL_LONG( ADD_LONG( metrics->vertBearingX,
+                                           metrics->width ) );
+      bottom = FT_PIX_CEIL_LONG( ADD_LONG( metrics->vertBearingY,
+                                           metrics->height ) );
 
       metrics->vertBearingX = FT_PIX_FLOOR( metrics->vertBearingX );
       metrics->vertBearingY = FT_PIX_FLOOR( metrics->vertBearingY );
@@ -599,13 +599,13 @@
       metrics->vertBearingX = FT_PIX_FLOOR( metrics->vertBearingX );
       metrics->vertBearingY = FT_PIX_FLOOR( metrics->vertBearingY );
 
-      right  = FT_PIX_CEIL ( ADD_LONG( metrics->horiBearingX,
-                                       metrics->width ) );
+      right  = FT_PIX_CEIL_LONG( ADD_LONG( metrics->horiBearingX,
+                                           metrics->width ) );
       bottom = FT_PIX_FLOOR( SUB_LONG( metrics->horiBearingY,
                                        metrics->height ) );
 
       metrics->horiBearingX = FT_PIX_FLOOR( metrics->horiBearingX );
-      metrics->horiBearingY = FT_PIX_CEIL ( metrics->horiBearingY );
+      metrics->horiBearingY = FT_PIX_CEIL_LONG( metrics->horiBearingY );
 
       metrics->width  = SUB_LONG( right,
                                   metrics->horiBearingX );
@@ -613,8 +613,8 @@
                                   bottom );
     }
 
-    metrics->horiAdvance = FT_PIX_ROUND( metrics->horiAdvance );
-    metrics->vertAdvance = FT_PIX_ROUND( metrics->vertAdvance );
+    metrics->horiAdvance = FT_PIX_ROUND_LONG( metrics->horiAdvance );
+    metrics->vertAdvance = FT_PIX_ROUND_LONG( metrics->vertAdvance );
   }
 #endif /* GRID_FIT_METRICS */
 



reply via email to

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