shithub: freetype+ttf2subf

Download patch

ref: fb57228b94904c664a7f4878720660bb8f41b31b
parent: b7c063d52332387bb00c9a04acd078c9411e7768
author: Werner Lemberg <[email protected]>
date: Tue May 13 08:10:04 EDT 2008

* src/winfonts/winfnt.c (fnt_face_get_dll_font, FNT_Face_Init):
Handle case `face_index < 0'.
* docs/CHANGES: Document it.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-05-13  Werner Lemberg  <[email protected]>
+
+	* src/winfonts/winfnt.c (fnt_face_get_dll_font, FNT_Face_Init):
+	Handle case `face_index < 0'.
+	* docs/CHANGES: Document it.
+
 2008-05-04  Werner Lemberg  <[email protected]>
 
 	First steps to fix the scaling bug of CID-keyed CFF subfonts,
--- a/docs/CHANGES
+++ b/docs/CHANGES
@@ -14,6 +14,8 @@
 
     - Subsetted CID-keyed CFFs are now supported correctly.
 
+    - A call to FT_Open_Face with `face_index' < 0 crashed FreeType if
+      the font was a Windows (bitmap) FNT/FON.
 
   II. IMPORTANT CHANGES
 
--- a/src/winfonts/winfnt.c
+++ b/src/winfonts/winfnt.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    FreeType font driver for Windows FNT/FON files                       */
 /*                                                                         */
-/*  Copyright 1996-2001, 2002, 2003, 2004, 2006, 2007 by                   */
+/*  Copyright 1996-2001, 2002, 2003, 2004, 2006, 2007, 2008 by             */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*  Copyright 2003 Huw D M Davies for Codeweavers                          */
 /*  Copyright 2007 Dmitry Timoshkov for Codeweavers                        */
@@ -363,6 +363,8 @@
           error = FNT_Err_Bad_Argument;
           goto Exit;
         }
+        else if ( face_index < 0 )
+          goto Exit;
 
         if ( FT_NEW( face->font ) )
           goto Exit;
@@ -692,6 +694,9 @@
 
     /* try to load font from a DLL */
     error = fnt_face_get_dll_font( face, face_index );
+    if ( !error && face_index < 0 )
+      goto Exit;
+
     if ( error == FNT_Err_Unknown_File_Format )
     {
       /* this didn't work; try to load a single FNT font */
@@ -708,8 +713,13 @@
 
       error = fnt_font_load( font, stream );
 
-      if ( !error && face_index > 0 )
-        error = FNT_Err_Bad_Argument;
+      if ( !error )
+      {
+        if ( face_index > 0 )
+          error = FNT_Err_Bad_Argument;
+        else if ( face_index < 0 )
+          goto Exit;
+      }
     }
 
     if ( error )