Fix missing return
authorBehdad Esfahbod <behdad@behdad.org>
Sat, 13 Aug 2011 17:03:48 +0000 (19:03 +0200)
committerBehdad Esfahbod <behdad@behdad.org>
Sat, 13 Aug 2011 17:03:48 +0000 (19:03 +0200)
src/hb-ft.cc

index aa73e7b..57ab034 100644 (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;
 }