ntdll: Handle IMAGE_REL_BASED_DIR64 for arm64 in the same way as for x86_64.

Signed-off-by: Martin Storsjo <martin@martin.st>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Martin Storsjo 2017-07-07 13:39:23 +03:00 committed by Alexandre Julliard
parent bf0cad095f
commit 114d8aded7
1 changed files with 1 additions and 1 deletions

View File

@ -2476,7 +2476,7 @@ IMAGE_BASE_RELOCATION * WINAPI LdrProcessRelocationBlock( void *page, UINT count
case IMAGE_REL_BASED_HIGHLOW:
*(int *)((char *)page + offset) += delta;
break;
#ifdef __x86_64__
#ifdef _WIN64
case IMAGE_REL_BASED_DIR64:
*(INT_PTR *)((char *)page + offset) += delta;
break;