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:
parent
bf0cad095f
commit
114d8aded7
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue