summaryrefslogtreecommitdiff
path: root/src/vm/class.inl
diff options
context:
space:
mode:
authorRuben Ayrapetyan <ruben-ayrapetyan@users.noreply.github.com>2017-06-13 16:58:41 +0300
committerJan Kotas <jkotas@microsoft.com>2017-06-13 06:58:40 -0700
commitb258792e59b09060f54e0c9bbd31edc3e67d1ae8 (patch)
treea4a465d84174db3c7cbae95c0c6e050c87a0298d /src/vm/class.inl
parent8115d8bdaa208f100897c30d9016c77259adb762 (diff)
downloadcoreclr-b258792e59b09060f54e0c9bbd31edc3e67d1ae8.tar.gz
coreclr-b258792e59b09060f54e0c9bbd31edc3e67d1ae8.tar.bz2
coreclr-b258792e59b09060f54e0c9bbd31edc3e67d1ae8.zip
Partially remove relocations for ModuleSection (ZapVirtualSectionType). (#11853)
Diffstat (limited to 'src/vm/class.inl')
-rw-r--r--src/vm/class.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/class.inl b/src/vm/class.inl
index bc86e84101..78e05cdd14 100644
--- a/src/vm/class.inl
+++ b/src/vm/class.inl
@@ -39,7 +39,7 @@ inline void EEClassOptionalFields::Init()
{
LIMITED_METHOD_CONTRACT;
m_pDictLayout = NULL;
- m_pVarianceInfo = NULL;
+ m_pVarianceInfo.SetValueMaybeNull(NULL);
#ifdef FEATURE_COMINTEROP
m_pSparseVTableMap = NULL;
m_pCoClassForIntf = TypeHandle();