summaryrefslogtreecommitdiff
path: root/src/pal/src/arch/i386/signalhandlerhelper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/src/arch/i386/signalhandlerhelper.cpp')
-rw-r--r--src/pal/src/arch/i386/signalhandlerhelper.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pal/src/arch/i386/signalhandlerhelper.cpp b/src/pal/src/arch/i386/signalhandlerhelper.cpp
index 3369abe093..a7d418a788 100644
--- a/src/pal/src/arch/i386/signalhandlerhelper.cpp
+++ b/src/pal/src/arch/i386/signalhandlerhelper.cpp
@@ -70,7 +70,6 @@ void ExecuteHandlerOnOriginalStack(int code, siginfo_t *siginfo, void *context,
// We don't care about the other registers state since the stack unwinding restores
// them for the target frame directly from the signal context.
context2.Esp = (size_t)sp;
- context2.ResumeEsp = (size_t)sp;
context2.Ebp = (size_t)fp;
context2.Eip = (size_t)signal_handler_worker;