usp10: Removed unused variable (PVS-Studio).

This commit is contained in:
Michael Stefaniuc 2014-10-28 23:37:00 +01:00 committed by Alexandre Julliard
parent 3d77974f76
commit 7585859986
1 changed files with 1 additions and 2 deletions

View File

@ -924,10 +924,9 @@ static INT GSUB_apply_LigatureSubst(const OT_LookupTable *look, WORD *glyphs, IN
static INT GSUB_apply_ChainContextSubst(const OT_LookupList* lookup, const OT_LookupTable *look, WORD *glyphs, INT glyph_index, INT write_dir, INT *glyph_count) static INT GSUB_apply_ChainContextSubst(const OT_LookupList* lookup, const OT_LookupTable *look, WORD *glyphs, INT glyph_index, INT write_dir, INT *glyph_count)
{ {
int j; int j;
BOOL done = FALSE;
TRACE("Chaining Contextual Substitution Subtable\n"); TRACE("Chaining Contextual Substitution Subtable\n");
for (j = 0; j < GET_BE_WORD(look->SubTableCount) && !done; j++) for (j = 0; j < GET_BE_WORD(look->SubTableCount); j++)
{ {
const GSUB_ChainContextSubstFormat1 *ccsf1; const GSUB_ChainContextSubstFormat1 *ccsf1;
int offset; int offset;