Skip to content

Commit

Permalink
[Local GC] Handle table low-hanging interface violations (dotnet#10929)
Browse files Browse the repository at this point in the history
  • Loading branch information
swgillespie authored Apr 13, 2017
1 parent da623d2 commit 56776b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gc/handletablescan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ static void VerifyObjectAndAge(_UNCHECKED_OBJECTREF *pValue, _UNCHECKED_OBJECTRE
if (minAge >= GEN_MAX_AGE || (minAge > thisAge && thisAge < static_cast<int>(g_theGCHeap->GetMaxGeneration())))
{
_ASSERTE(!"Fatal Error in HandleTable.");
EEPOLICY_HANDLE_FATAL_ERROR(COR_E_EXECUTIONENGINE);
GCToEEInterface::HandleFatalError(COR_E_EXECUTIONENGINE);
}
}

Expand Down

0 comments on commit 56776b2

Please sign in to comment.