shithub: freetype+ttf2subf

Download patch

ref: f88969ab6c8be064b9a38da4185f395dd22beac1
parent: b89fb71ce6c4795d4e6c5789fe4004c21e694905
author: David Turner <[email protected]>
date: Wed Oct 11 20:28:00 EDT 2000

the function FTC_Manager_Lookup_Size will return a valid
FT_Face handle, even if no size was found..

git/fs: mount .git/fs: mount/attach disallowed
--- a/src/cache/ftcmanag.c
+++ b/src/cache/ftcmanag.c
@@ -332,7 +332,6 @@
   {
     FTC_FontRequest  req;
     FT_Error         error;
-    FT_Face          face;
     
 
     /* check for valid `manager' delayed to FTC_Manager_Lookup_Face() */
@@ -343,13 +342,13 @@
     if ( asize )
       *asize = 0;
 
-    error = FTC_Manager_Lookup_Face( manager, font->face_id, &face ); 
+    error = FTC_Manager_Lookup_Face( manager, font->face_id, aface ); 
     if ( !error )
     {
       FT_Size  size;
       
 
-      req.face   = face;
+      req.face   = *aface;
       req.width  = font->pix_width;
       req.height = font->pix_height;
       
@@ -363,9 +362,6 @@
         
         if ( asize )
           *asize = size;
-          
-        if ( aface )
-          *aface = face;
       }
     }