From 24a6c7908f2582fb8628e53fe3d02306f6fba43c Mon Sep 17 00:00:00 2001 From: Vijay Ramakrishnan Date: Sat, 22 Oct 2016 04:51:20 -0700 Subject: [PATCH] Fixing the StackOverflowException error message. (#4786) --- src/pal/src/include/pal/palinternal.h | 2 +- src/vm/eepolicy.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pal/src/include/pal/palinternal.h b/src/pal/src/include/pal/palinternal.h index fa51ecc..53d5203 100644 --- a/src/pal/src/include/pal/palinternal.h +++ b/src/pal/src/include/pal/palinternal.h @@ -712,7 +712,7 @@ inline T* InterlockedCompareExchangePointerT( #include "volatile.h" -const char StackOverflowMessage[] = "Process is terminated due to StackOverflowException.\n"; +const char StackOverflowMessage[] = "Process is terminating due to StackOverflowException.\n"; #endif // __cplusplus diff --git a/src/vm/eepolicy.cpp b/src/vm/eepolicy.cpp index 8c3f2ec..236f5af 100644 --- a/src/vm/eepolicy.cpp +++ b/src/vm/eepolicy.cpp @@ -1368,7 +1368,7 @@ void DisplayStackOverflowException() LIMITED_METHOD_CONTRACT; PrintToStdErrA("\n"); - PrintToStdErrA("Process is terminated due to StackOverflowException.\n"); + PrintToStdErrA("Process is terminating due to StackOverflowException.\n"); } void DECLSPEC_NORETURN EEPolicy::HandleFatalStackOverflow(EXCEPTION_POINTERS *pExceptionInfo, BOOL fSkipDebugger) -- 2.7.4