From 7392f32e47eeb0f77d3c4c3203028e359557d058 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 5 Feb 2025 19:16:08 +0000 Subject: [PATCH] [face] Tweak stack again Let's go with one loop iteration. It's cheap. --- src/hb-face.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-face.cc b/src/hb-face.cc index 549ba17dc..ebe8d8a44 100644 --- a/src/hb-face.cc +++ b/src/hb-face.cc @@ -515,7 +515,7 @@ hb_face_reference_blob (hb_face_t *face) unsigned total_count = hb_face_get_table_tags (face, 0, nullptr, nullptr); if (total_count) { - hb_tag_t tags[16]; + hb_tag_t tags[64]; unsigned count = sizeof (tags) / sizeof (tags[0]); hb_face_t* builder = hb_face_builder_create ();