[GSUB/GPOS] Fix wrong buffer access in backward skippy mask matching

This commit is contained in:
Behdad Esfahbod 2012-05-11 17:18:37 +02:00
parent ff24d1081a
commit 8fd83aaf6e
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ struct hb_apply_context_t
idx--;
} while (_hb_ot_layout_skip_mark (c->face, &c->buffer->out_info[idx], lookup_props, property_out));
num_items--;
return !!(c->buffer->info[idx].mask & mask);
return !!(c->buffer->out_info[idx].mask & mask);
}
inline bool prev (unsigned int *property_out = NULL)
{