shithub: freetype+ttf2subf

Download patch

ref: 066a49139b904aa1f8a47d3b4fd45c0a1d4c7aca
parent: 30fe5e762e062612fdf4b56b50d813525a5aa311
author: Werner Lemberg <[email protected]>
date: Tue Oct 6 03:55:32 EDT 2015

[cff] Return correct PS names from pure CFF (#46130).

* src/cff/cffdrivr.c (cff_get_ps_name): Use SFNT service only for
SFNT.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2015-10-06  Werner Lemberg  <[email protected]>
+
+	[cff] Return correct PS names from pure CFF (#46130).
+
+	* src/cff/cffdrivr.c (cff_get_ps_name): Use SFNT service only for
+	SFNT.
+
 2015-10-04  Werner Lemberg  <[email protected]>
 
 	[base] Replace left shifts with multiplication (#46118).
--- a/src/cff/cffdrivr.c
+++ b/src/cff/cffdrivr.c
@@ -444,7 +444,7 @@
     /* following the OpenType specification 1.7, we return the name stored */
     /* in the `name' table for a CFF wrapped into an SFNT container        */
 
-    if ( sfnt )
+    if ( FT_IS_SFNT( FT_FACE( face ) ) && sfnt )
     {
       FT_Library             library     = FT_FACE_LIBRARY( face );
       FT_Module              sfnt_module = FT_Get_Module( library, "sfnt" );