Commit efc45c5e authored by Torge Matthies's avatar Torge Matthies Committed by Alexandre Julliard

ntdll: Fix incorrectly sized mov in user_mode_callback_return.

parent 9b3742be
......@@ -1647,7 +1647,7 @@ __ASM_GLOBAL_FUNC( user_mode_callback_return,
"movq 0x10(%rbp),%rsi\n\t" /* ret_ptr */
"movq 0x18(%rbp),%rdi\n\t" /* ret_len */
"movq %rcx,(%rsi)\n\t"
"movq %rdx,(%rdi)\n\t"
"movl %edx,(%rdi)\n\t"
"movdqa -0xe0(%rbp),%xmm15\n\t"
"movdqa -0xd0(%rbp),%xmm14\n\t"
"movdqa -0xc0(%rbp),%xmm13\n\t"
......
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