From fa2328cfc1f4eb3ca0f76e547ec9fff3983c6cc6 Mon Sep 17 00:00:00 2001 From: Sean Gillespie Date: Thu, 13 Apr 2017 15:35:42 -0700 Subject: [PATCH] [Local GC] Handle table low-hanging interface violations (dotnet/coreclr#10929) Commit migrated from https://github.com/dotnet/coreclr/commit/56776b20f5902ef60d43cb502d734193b2521fca --- src/coreclr/src/gc/handletablescan.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/src/gc/handletablescan.cpp b/src/coreclr/src/gc/handletablescan.cpp index 86ce62d..065ba0d 100644 --- a/src/coreclr/src/gc/handletablescan.cpp +++ b/src/coreclr/src/gc/handletablescan.cpp @@ -949,7 +949,7 @@ static void VerifyObjectAndAge(_UNCHECKED_OBJECTREF *pValue, _UNCHECKED_OBJECTRE if (minAge >= GEN_MAX_AGE || (minAge > thisAge && thisAge < static_cast(g_theGCHeap->GetMaxGeneration()))) { _ASSERTE(!"Fatal Error in HandleTable."); - EEPOLICY_HANDLE_FATAL_ERROR(COR_E_EXECUTIONENGINE); + GCToEEInterface::HandleFatalError(COR_E_EXECUTIONENGINE); } } -- 2.7.4