Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-12-17 04:35:30 +0300
committerJan Kotas <jkotas@microsoft.com>2015-12-17 04:35:30 +0300
commit56cf1ba0d87cd08e57b40a4934cc05cf61cc5d04 (patch)
tree3d2aa29bde5cdb4a76341d7f49c568d016e192da /src/Native/Runtime/eetype.cpp
parent6cf6977b884f47d004972910af4a39e07be2df53 (diff)
Fix GCStress
[tfs-changeset: 1558329]
Diffstat (limited to 'src/Native/Runtime/eetype.cpp')
-rw-r--r--src/Native/Runtime/eetype.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Native/Runtime/eetype.cpp b/src/Native/Runtime/eetype.cpp
index ee3a4d27b..8603787ce 100644
--- a/src/Native/Runtime/eetype.cpp
+++ b/src/Native/Runtime/eetype.cpp
@@ -45,7 +45,7 @@ bool EEType::Validate(bool assertOnFail /* default: true */)
case CanonicalEEType:
{
// If the parent type is NULL this had better look like Object.
- if (m_RelatedType.m_pBaseType == NULL)
+ if (!IsInterface() && (m_RelatedType.m_pBaseType == NULL))
{
if (IsRelatedTypeViaIAT() ||
get_IsValueType() ||