Commit 57c04fd0 authored by Brendan Shanks's avatar Brendan Shanks Committed by Alexandre Julliard

ntdll: Use 32-bit stack in alloc_fs_sel().

parent 24a4b8ca
...@@ -94,7 +94,7 @@ __ASM_GLOBAL_FUNC( alloc_fs_sel, ...@@ -94,7 +94,7 @@ __ASM_GLOBAL_FUNC( alloc_fs_sel,
"pushq %rbx\n\t" "pushq %rbx\n\t"
"pushq %rdi\n\t" "pushq %rdi\n\t"
"movq %rsp,%rdi\n\t" "movq %rsp,%rdi\n\t"
"movq %gs:0x8,%rsp\n\t" /* NtCurrentTeb()->Tib.StackBase */ "movl 0x4(%rdx),%esp\n\t" /* Tib.StackBase */
"subl $0x10,%esp\n\t" "subl $0x10,%esp\n\t"
/* setup modify_ldt struct on 32-bit stack */ /* setup modify_ldt struct on 32-bit stack */
"movl %ecx,(%rsp)\n\t" /* entry_number */ "movl %ecx,(%rsp)\n\t" /* entry_number */
......
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