From 3224a594dcf2164b5585b4ccba34f244af3f61b9 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 7 Oct 2015 17:33:02 -0400 Subject: [PATCH] Minor --- src/hb-ot-font.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/hb-ot-font.cc b/src/hb-ot-font.cc index 9cde838..3d861ec 100644 --- a/src/hb-ot-font.cc +++ b/src/hb-ot-font.cc @@ -238,10 +238,9 @@ struct hb_ot_font_t static hb_ot_font_t * -_hb_ot_font_create (hb_font_t *font) +_hb_ot_font_create (hb_face_t *face) { hb_ot_font_t *ot_font = (hb_ot_font_t *) calloc (1, sizeof (hb_ot_font_t)); - hb_face_t *face = font->face; if (unlikely (!ot_font)) return NULL; @@ -423,7 +422,7 @@ _hb_ot_get_font_funcs (void) void hb_ot_font_set_funcs (hb_font_t *font) { - hb_ot_font_t *ot_font = _hb_ot_font_create (font); + hb_ot_font_t *ot_font = _hb_ot_font_create (font->face); if (unlikely (!ot_font)) return; -- 2.7.4