Skip to content
Snippets Groups Projects
Commit 60a4b591 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Fix push/pop of preserved registers on x86

parent 32770ed9
No related branches found
No related tags found
No related merge requests found
...@@ -54,9 +54,10 @@ __relibc_internal_fork_wrapper: ...@@ -54,9 +54,10 @@ __relibc_internal_fork_wrapper:
push ebp push ebp
mov ebp, esp mov ebp, esp
// Push preserved registers
push ebx push ebx
push esi
push edi push edi
push esi
push ebp push ebp
sub esp, 32 sub esp, 32
...@@ -86,6 +87,8 @@ __relibc_internal_fork_ret: ...@@ -86,6 +87,8 @@ __relibc_internal_fork_ret:
.p2align 4 .p2align 4
2: 2:
add esp, 32 add esp, 32
// Pop preserved registers
pop ebp pop ebp
pop esi pop esi
pop edi pop edi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment