[ot-glyph] Return empty path for empty faces

This commit is contained in:
Ebrahim Byagowi 2019-11-28 09:16:58 +03:30
parent 6e7602c104
commit 05443e55bc
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ hb_ot_glyph_path_create_from_font (hb_font_t *font, hb_codepoint_t glyph)
{
_hb_ot_glyph_path_vectors *user_data = (_hb_ot_glyph_path_vectors *)
malloc (sizeof (_hb_ot_glyph_path_vectors));
if (unlikely (!user_data || !user_data->init ()))
if (unlikely (!user_data || !user_data->init () || glyph >= font->face->get_num_glyphs ()))
{
free (user_data);
return hb_ot_glyph_path_empty ();