shithub: freetype+ttf2subf

Download patch

ref: 54abd22891bd51ef8b533b24df53b3019b5cee81
parent: 257c270bd25e15890190a28a1456e7623bba4439
author: Werner Lemberg <[email protected]>
date: Sat Nov 15 04:05:22 EST 2014

[sfnt] Fix Savannah bug #43597.

* src/sfnt/pngshim.c (Load_SBit_Png): Protect against too large
bitmaps.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2014-11-15  Werner Lemberg  <[email protected]>
+
+	[sfnt] Fix Savannah bug #43597.
+
+	* src/sfnt/pngshim.c (Load_SBit_Png): Protect against too large
+	bitmaps.
+
 2014-11-12  Werner Lemberg  <[email protected]>
 
 	[sfnt] Fix Savannah bug #43591.
--- a/src/sfnt/pngshim.c
+++ b/src/sfnt/pngshim.c
@@ -269,6 +269,13 @@
       map->pitch      = map->width * 4;
       map->num_grays  = 256;
 
+      /* reject too large bitmaps similarly to the rasterizer */
+      if ( map->rows > 0x7FFF || map->width > 0x7FFF )
+      {
+        error = FT_THROW( Array_Too_Large );
+        goto DestroyExit;
+      }
+
       size = map->rows * map->pitch;
 
       error = ft_glyphslot_alloc_bitmap( slot, size );