[font] Fix unlikely

This commit is contained in:
Behdad Esfahbod 2023-01-28 22:06:46 -07:00
parent c1d0daf5f1
commit 544dd9678c
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ _hb_ot_font_create (hb_font_t *font)
cmap_cache = (hb_ot_font_cmap_cache_t *) hb_malloc (sizeof (hb_ot_font_cmap_cache_t));
if (unlikely (!cmap_cache)) goto out;
cmap_cache->init ();
if (!unlikely (hb_face_set_user_data (font->face,
if (unlikely (!hb_face_set_user_data (font->face,
&hb_ot_font_cmap_cache_user_data_key,
cmap_cache,
hb_free,