commit | 9527fb200ffbbd839334e99b51d9671752d393db | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Sat Aug 13 19:03:48 2011 +0200 |
committer | Behdad Esfahbod <behdad@behdad.org> | Sat Aug 13 19:03:48 2011 +0200 |
tree | 344072b50ade09fa26f801be1f9421be14ae3266 | |
parent | 77a328769545f6b2970d8491fe77fe98781961cf [diff] |
Fix missing return
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 @@ 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; }