From: Michiharu Ariza Date: Wed, 12 Sep 2018 05:41:50 +0000 (-0700) Subject: fixed name mixup in Remap::reset X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f45ac6296add6435ea5a902f7519187414aa8092;p=platform%2Fupstream%2FlibHarfBuzzSharp.git fixed name mixup in Remap::reset it was causing inconsistent Strings Index subset results --- diff --git a/src/hb-ot-cff-common.hh b/src/hb-ot-cff-common.hh index 28728a9..87ca69d 100644 --- a/src/hb-ot-cff-common.hh +++ b/src/hb-ot-cff-common.hh @@ -356,9 +356,9 @@ struct Remap : hb_vector_t inline void fini (void) { hb_vector_t::fini (); } - inline bool reset (unsigned int count) + inline bool reset (unsigned int size) { - if (unlikely (!hb_vector_t::resize (count))) + if (unlikely (!hb_vector_t::resize (size))) return false; for (unsigned int i = 0; i < len; i++) (*this)[i] = CFF_UNDEF_CODE;