This commit is contained in:
Behdad Esfahbod 2010-05-27 11:42:34 -04:00
parent 56bef5680c
commit 226faa58f4
1 changed files with 2 additions and 2 deletions

View File

@ -157,8 +157,8 @@ hb_ot_tag_to_script (hb_tag_t tag)
int i;
for (i = 0; i < ARRAY_LENGTH (ot_scripts); i++) {
const hb_tag_t *p = ot_scripts[i];
while (*p)
const hb_tag_t *p;
for (p = ot_scripts[i]; *p; p++)
if (tag == *p)
return i;
}