Fix build

$ make CPPFLAGS="-DHB_TINY -DHB_NO_OT_FONT" libharfbuzz-subset.la
This commit is contained in:
Behdad Esfahbod 2019-10-28 17:12:55 -07:00
parent fd71c045b4
commit 7152ac3fcf
1 changed files with 4 additions and 1 deletions

View File

@ -71,7 +71,10 @@ _cmap_closure (hb_face_t *face,
const hb_set_t *unicodes,
hb_set_t *glyphset)
{
face->table.cmap->table->closure_glyphs (unicodes, glyphset);
OT::cmap::accelerator_t cmap;
cmap.init (face);
cmap.table->closure_glyphs (unicodes, glyphset);
cmap.fini ();
}
static inline void