From b9ecc7420df811e94413d77e6d70140e18d6ebe6 Mon Sep 17 00:00:00 2001 From: Garret Rieger Date: Tue, 16 Feb 2021 13:39:10 -0800 Subject: [PATCH] [subset] init offset_overflow in hb_serialize_context_t. --- src/hb-serialize.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hb-serialize.hh b/src/hb-serialize.hh index c8a209d67..77ed74731 100644 --- a/src/hb-serialize.hh +++ b/src/hb-serialize.hh @@ -131,6 +131,7 @@ struct hb_serialize_context_t { this->successful = true; this->ran_out_of_room = false; + this->offset_overflow = false; this->head = this->start; this->tail = this->end; this->debug_depth = 0;