diff --git a/src/coreclr/pal/src/exception/signal.cpp b/src/coreclr/pal/src/exception/signal.cpp index 28ddb0dbee3313..b49670a8f5191a 100644 --- a/src/coreclr/pal/src/exception/signal.cpp +++ b/src/coreclr/pal/src/exception/signal.cpp @@ -646,15 +646,14 @@ static void sigsegv_handler(int code, siginfo_t *siginfo, void *context) { PROCAbort(SIGSEGV, siginfo); } - - // The current executable (shared library) doesn't have hardware exception handler installed or opted to not to - // handle it. So this handler will invoke the previously installed handler at the end of this function. } else { (void)!write(STDERR_FILENO, StackOverflowMessage, sizeof(StackOverflowMessage) - 1); - PROCAbort(SIGSEGV, siginfo); } + + // The current executable (shared library) doesn't have hardware exception handler installed or opted to not to + // handle it. So this handler will invoke the previously installed handler at the end of this function. } else {