usp10: Do not over increment glyph index in Chaining Contextual Substitution.

This commit is contained in:
Aric Stewart 2011-06-07 09:57:01 -05:00 committed by Alexandre Julliard
parent c23a5443c1
commit 6657bf2d69

View file

@ -1040,7 +1040,7 @@ static INT GSUB_apply_ChainContextSubst(const GSUB_LookupList* lookup, const GSU
continue;
}
}
return newIndex + 1;
return newIndex;
}
}
return -1;