[GSUB] Fix reverse lookup loop like we did in the old code before

This commit is contained in:
Behdad Esfahbod 2009-04-16 12:30:51 -04:00
parent 5a0b791184
commit 83e61ff470
1 changed files with 1 additions and 1 deletions

View File

@ -808,7 +808,7 @@ struct SubstLookup : Lookup {
else
buffer->in_pos--;
} while (buffer->in_pos);
} while ((int) buffer->in_pos >= 0);
}
return ret;