Fix missing return

This commit is contained in:
Behdad Esfahbod 2011-08-13 19:03:48 +02:00
parent 77a3287695
commit 9527fb200f
1 changed files with 2 additions and 0 deletions

View File

@ -425,4 +425,6 @@ hb_ft_font_get_face (hb_font_t *font)
if (font->destroy == (hb_destroy_func_t) FT_Done_Face ||
font->destroy == (hb_destroy_func_t) _do_nothing)
return (FT_Face) font->user_data;
return NULL;
}