Fixing the StackOverflowException error message. (#4786)
authorVijay Ramakrishnan <vijayrkn@users.noreply.github.com>
Sat, 22 Oct 2016 11:51:20 +0000 (04:51 -0700)
committerJan Kotas <jkotas@microsoft.com>
Sat, 22 Oct 2016 11:51:20 +0000 (04:51 -0700)
src/pal/src/include/pal/palinternal.h
src/vm/eepolicy.cpp

index fa51ecc..53d5203 100644 (file)
@@ -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
 
index 8c3f2ec..236f5af 100644 (file)
@@ -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)