shithub: freetype+ttf2subf

Download patch

ref: 89d64fa6e3c9d7ab1b64e3e1c7c96533f5266510
parent: a2f17cc1508ddc476c21356a0b7bbee31d009d65
author: Werner Lemberg <[email protected]>
date: Sat May 17 16:06:13 EDT 2008

* src/truetype/ttgload.c (TT_Load_Simple_Glyph): Handle zero-contour
glyphs correctly.  Patch from Savannah bug #23277.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-05-17  Sam Hocevar  <samh>
+
+	* src/truetype/ttgload.c (TT_Load_Simple_Glyph): Handle zero-contour
+	glyphs correctly.  Patch from Savannah bug #23277.
+
 2008-05-16  Werner Lemberg  <[email protected]>
 
 	* docs/CHANGES: Updated.
--- a/src/truetype/ttgload.c
+++ b/src/truetype/ttgload.c
@@ -267,7 +267,11 @@
     if ( n_contours >= 0xFFF || p + ( n_contours + 1 ) * 2 > limit )
       goto Invalid_Outline;
 
-    cont[0] = prev_cont = FT_NEXT_USHORT( p );
+    prev_cont = FT_NEXT_USHORT( p );
+
+    if ( n_contours > 0 )
+      cont[0] = prev_cont;
+
     for ( cont++; cont < cont_limit; cont++ )
     {
       cont[0] = FT_NEXT_USHORT( p );