From 9a1df9c03795758145c1286c4034a2d80f725339 Mon Sep 17 00:00:00 2001 From: monojenkins Date: Thu, 10 Sep 2020 11:47:54 -0400 Subject: [PATCH] [crashing] update s390x handling (#41961) commit 2a4e66af4dc628a84a42ff443bc2c09a4bcc7dec broke build on s390x after changing the signature of `mono_handle_native_crash()`. We need to update exceptions-s390x.c as well. Fixes: https://github.com/mono/mono/issues/20356 Co-authored-by: sharkcz --- src/mono/mono/mini/exceptions-s390x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mono/mono/mini/exceptions-s390x.c b/src/mono/mono/mini/exceptions-s390x.c index 0a8903f..e8d0bba 100644 --- a/src/mono/mono/mini/exceptions-s390x.c +++ b/src/mono/mono/mini/exceptions-s390x.c @@ -573,7 +573,7 @@ altstack_handle_and_restore (MonoContext *ctx, MONO_SIG_HANDLER_INFO_TYPE *sigin if (!ji || (!stack_ovf && !nullref)) { if (mono_dump_start ()) - mono_handle_native_crash (mono_get_signame (SIGSEGV), ctx, siginfo, ctx); + mono_handle_native_crash (mono_get_signame (SIGSEGV), ctx, siginfo); /* if couldn't dump or if mono_handle_native_crash returns, abort */ abort (); } -- 2.7.4