Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2014-09-22 09:16:00 +0400
committerZoltan Varga <vargaz@gmail.com>2014-09-22 09:16:00 +0400
commit5f9c74f4c5188d5dd56397a8e84126a5fb6e6ec0 (patch)
treee27137cf595d726dde0e62e54372b93eddab2d64
parentdf43380ea671e3255081af9eb19c79d36f805797 (diff)
[runtime] Fix mono_sigctx_to_monoctx () on win32.1531798
-rw-r--r--mono/utils/mono-context.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mono/utils/mono-context.c b/mono/utils/mono-context.c
index 02fa8c8701c..c52d0442f46 100644
--- a/mono/utils/mono-context.c
+++ b/mono/utils/mono-context.c
@@ -60,6 +60,7 @@ mono_sigctx_to_monoctx (void *sigctx, MonoContext *mctx)
#elif defined(HOST_WIN32)
CONTEXT *context = (CONTEXT*)sigctx;
+ mctx->eip = context->Eip;
mctx->edi = context->Edi;
mctx->esi = context->Esi;
mctx->ebx = context->Ebx;