[PATCH 4/5] usp10: Simplify the "pr_2" assignment in GPOS_apply_ContextPos().

Aric Stewart aric at codeweavers.com
Tue Apr 18 06:59:31 CDT 2017


Signed-off-by: Aric Stewart <aric at codeweavers.com>

On 4/17/17 1:26 PM, Henri Verbeet wrote:
> Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
> ---
>  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 ec425a1..e190b92 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++)
>                      {
> 



More information about the wine-patches mailing list