Commit 75858599 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

usp10: Removed unused variable (PVS-Studio).

parent 3d77974f
......@@ -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)
{
int j;
BOOL done = FALSE;
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;
int offset;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment