[FT] Just return if glyph name not found
authorBehdad Esfahbod <behdad@behdad.org>
Thu, 7 Mar 2013 00:37:31 +0000 (19:37 -0500)
committerBehdad Esfahbod <behdad@behdad.org>
Thu, 7 Mar 2013 00:37:31 +0000 (19:37 -0500)
The fallback happens in higher level already.  No need to do here.

src/hb-ft.cc

index 1e87c1c..a25d5a4 100644 (file)
@@ -242,8 +242,8 @@ hb_ft_get_glyph_name (hb_font_t *font HB_UNUSED,
   FT_Face ft_face = (FT_Face) font_data;
 
   hb_bool_t ret = !FT_Get_Glyph_Name (ft_face, glyph, name, size);
-  if (!ret || (size && !*name))
-    snprintf (name, size, "gid%u", glyph);
+  if (ret && (size && !*name))
+    ret = false;
 
   return ret;
 }