From 9527fb200ffbbd839334e99b51d9671752d393db Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sat, 13 Aug 2011 19:03:48 +0200 Subject: [PATCH] Fix missing return --- src/hb-ft.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hb-ft.cc b/src/hb-ft.cc index aa73e7b..57ab034 100644 --- a/src/hb-ft.cc +++ b/src/hb-ft.cc @@ -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; } -- 2.7.4