From: Behdad Esfahbod Date: Wed, 6 May 2009 04:25:59 +0000 (-0400) Subject: [GSUB] minor X-Git-Tag: submit/master/20120920.151126~7^2~1266 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eed05b04ebc2cbb3fa699c99200db12a0081cefb;p=framework%2Fuifw%2Fharfbuzz.git [GSUB] minor --- diff --git a/src/hb-ot-layout-open-private.h b/src/hb-ot-layout-open-private.h index da2da95..d2e1839 100644 --- a/src/hb-ot-layout-open-private.h +++ b/src/hb-ot-layout-open-private.h @@ -768,7 +768,8 @@ struct CoverageFormat2 { inline unsigned int get_coverage (hb_codepoint_t glyph_id) const { // TODO: bsearch - for (unsigned int i = 0; i < rangeCount; i++) { + unsigned int count = rangeCount; + for (unsigned int i = 0; i < count; i++) { int coverage = rangeRecord[i].get_coverage (glyph_id); if (coverage >= 0) return coverage; @@ -867,7 +868,8 @@ struct ClassDefFormat2 { inline hb_ot_layout_class_t get_class (hb_codepoint_t glyph_id) const { // TODO: bsearch - for (unsigned int i = 0; i < rangeCount; i++) { + unsigned int count = rangeCount; + for (unsigned int i = 0; i < count; i++) { int classValue = rangeRecord[i].get_class (glyph_id); if (classValue > 0) return classValue;