From 4816064c0e5464d032a55001a959a9abcef7f70e Mon Sep 17 00:00:00 2001 From: Rod Sheeter Date: Fri, 9 Feb 2018 17:14:37 -0800 Subject: [PATCH] add missing return --- src/hb-private.hh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/hb-private.hh b/src/hb-private.hh index a3d1250a6..751dec60f 100644 --- a/src/hb-private.hh +++ b/src/hb-private.hh @@ -448,7 +448,9 @@ struct hb_prealloced_array_t return false; array = new_array; - allocated = new_allocated; + allocated = new_allocated; + + return true; } inline bool resize (unsigned int size)