From 82d36ba63fe2132e1cca73cf23b7f3a92207151a Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Mon, 17 Apr 2017 20:26:59 +0200 Subject: [PATCH] usp10: Simplify the "pr_2" assignment in GPOS_apply_ContextPos(). Signed-off-by: Henri Verbeet Signed-off-by: Aric Stewart Signed-off-by: Alexandre Julliard --- dlls/usp10/opentype.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/usp10/opentype.c b/dlls/usp10/opentype.c index ec425a13579..e190b927fdc 100644 --- a/dlls/usp10/opentype.c +++ b/dlls/usp10/opentype.c @@ -2191,8 +2191,7 @@ static unsigned int GPOS_apply_ContextPos(const ScriptCache *script_cache, const } TRACE("Rule matches\n"); - pr_2 = (const GPOS_PosClassRule_2*)((const BYTE*)pr+ - FIELD_OFFSET(GPOS_PosClassRule_1, Class[g_count-1])); + pr_2 = (const GPOS_PosClassRule_2 *)&pr->Class[g_count - 1]; for (l = 0; l < GET_BE_WORD(pr->PosCount); l++) {