Commit f6b66e4f authored by Martin Storsjö's avatar Martin Storsjö Committed by Alexandre Julliard

ntdll: Fix KiUserCallbackDispatcher on arm.

This was broken in 78c2b7df. Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 4f95ad1a
......@@ -592,7 +592,7 @@ __ASM_GLOBAL_FUNC( KiUserCallbackDispatcher,
"mrc p15, 0, r3, c13, c0, 2\n\t" /* NtCurrentTeb() */
"ldr r3, [r3, 0x30]\n\t" /* peb */
"ldr r3, [r3, 0x2c]\n\t" /* peb->KernelCallbackTable */
"ldr ip, [r3, r2, lsl #3]\n\t"
"ldr ip, [r3, r2, lsl #2]\n\t"
"blx ip\n\t"
".seh_handler " __ASM_NAME("user_callback_handler") ", %except\n\t"
#else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment