]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid abort in ftfont.c due to faulty fonts
authorWerner LEMBERG <wl@gnu.org>
Tue, 11 Apr 2017 10:06:30 +0000 (13:06 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 11 Apr 2017 10:06:30 +0000 (13:06 +0300)
* src/ftfont.c (ftfont_get_metrics): Try loading the font without
hinting, before aborting.  (Bug#25945)

src/ftfont.c

index 6cabddda370b36354dc0b3e37ea2e78a14a7ba17..5600bde646da4a0b88d66e3f432a947885ca843b 100644 (file)
@@ -1546,7 +1546,8 @@ ftfont_get_metrics (MFLTFont *font, MFLTGlyphString *gstring,
          {
            FT_Glyph_Metrics *m;
 
-           if (FT_Load_Glyph (ft_face, g->g.code, FT_LOAD_DEFAULT) != 0)
+           if (FT_Load_Glyph (ft_face, g->g.code, FT_LOAD_DEFAULT) != 0
+               && FT_Load_Glyph (ft_face, g->g.code, FT_LOAD_NO_HINTING) != 0)
              emacs_abort ();
            m = &ft_face->glyph->metrics;
            if (flt_font_ft->matrix)