From 2ad3c0c7709fe07122934e4842225f55267ce84c Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 21 Jul 2022 09:46:25 -0600 Subject: [PATCH] Fix uninitialized variable --- src/hb-ot-map.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-ot-map.hh b/src/hb-ot-map.hh index 823dee673..a7b5eec30 100644 --- a/src/hb-ot-map.hh +++ b/src/hb-ot-map.hh @@ -163,7 +163,7 @@ struct hb_ot_map_t private: - hb_mask_t global_mask; + hb_mask_t global_mask = 0; hb_sorted_vector_t features; hb_vector_t lookups[2]; /* GSUB/GPOS */