From 001398e05bc5f16119e17a737102f6f6fb027047 Mon Sep 17 00:00:00 2001 From: Alexis Christoforides Date: Thu, 29 Aug 2019 11:33:39 -0400 Subject: [PATCH] Remove problematic assert from SIGILL handler mono_handle_native_crash() function can actually return if the native crash has triggered or has been trigerred by more than one signal. So it is possible to reach the point of the assert --- mono/mini/mini-runtime.c | 1 - 1 file changed, 1 deletion(-) diff --git a/mono/mini/mini-runtime.c b/mono/mini/mini-runtime.c index 8aff7362236..4fe0b6d61a1 100644 --- a/mono/mini/mini-runtime.c +++ b/mono/mini/mini-runtime.c @@ -3248,7 +3248,6 @@ MONO_SIG_HANDLER_FUNC (, mono_sigill_signal_handler) return; } - g_assert_not_reached (); } #if defined(MONO_ARCH_USE_SIGACTION) || defined(HOST_WIN32) -- 2.11.4.GIT