From ee1b322100a6bd575b999904592abbd9fed5587f Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 21 May 2010 12:55:57 +0100 Subject: [PATCH] Fix feature mask setting --- src/hb-ot-shape.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hb-ot-shape.cc b/src/hb-ot-shape.cc index 509ce7d..6a8c7ec 100644 --- a/src/hb-ot-shape.cc +++ b/src/hb-ot-shape.cc @@ -138,10 +138,10 @@ setup_lookups (hb_face_t *face, /* Turn mask on in the buffer, the über-slow way! */ unsigned int count = buffer->len; - for (unsigned int i = 0; i < count; i++) { - unsigned int cluster = buffer->info[i].cluster; + for (unsigned int j = 0; j < count; j++) { + unsigned int cluster = buffer->info[j].cluster; if (features[i].start <= cluster && cluster < features[i].end) - buffer->info[i].mask |= value; + buffer->info[j].mask |= value; } } -- 2.7.4