Fix missing return
This commit is contained in:
parent
77a3287695
commit
9527fb200f
|
@ -425,4 +425,6 @@ hb_ft_font_get_face (hb_font_t *font)
|
||||||
if (font->destroy == (hb_destroy_func_t) FT_Done_Face ||
|
if (font->destroy == (hb_destroy_func_t) FT_Done_Face ||
|
||||||
font->destroy == (hb_destroy_func_t) _do_nothing)
|
font->destroy == (hb_destroy_func_t) _do_nothing)
|
||||||
return (FT_Face) font->user_data;
|
return (FT_Face) font->user_data;
|
||||||
|
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue