From: Sean Gillespie Date: Thu, 13 Apr 2017 22:35:42 +0000 (-0700) Subject: [Local GC] Handle table low-hanging interface violations (dotnet/coreclr#10929) X-Git-Tag: submit/tizen/20210909.063632~11030^2~7265 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa2328cfc1f4eb3ca0f76e547ec9fff3983c6cc6;p=platform%2Fupstream%2Fdotnet%2Fruntime.git [Local GC] Handle table low-hanging interface violations (dotnet/coreclr#10929) Commit migrated from https://github.com/dotnet/coreclr/commit/56776b20f5902ef60d43cb502d734193b2521fca --- 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); } }