summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgbalykov <g.balykov@samsung.com>2017-05-31 18:39:43 +0300
committerJan Kotas <jkotas@microsoft.com>2017-05-31 08:39:43 -0700
commit3530e3f5751f4b0e12b8f45bf7fe2a2a309cfebb (patch)
tree2c6e28dd0c80219a5e28a0e47a09840211df20cd
parent38528f6662f24c37e11bac67a56ff7269e8e4f6e (diff)
downloadcoreclr-3530e3f5751f4b0e12b8f45bf7fe2a2a309cfebb.tar.gz
coreclr-3530e3f5751f4b0e12b8f45bf7fe2a2a309cfebb.tar.bz2
coreclr-3530e3f5751f4b0e12b8f45bf7fe2a2a309cfebb.zip
Fix issues with RelativePointer instead of RelativeFixupPointer (#12004)
-rw-r--r--src/vm/method.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/method.hpp b/src/vm/method.hpp
index 228ef0cd2a..4b85357d43 100644
--- a/src/vm/method.hpp
+++ b/src/vm/method.hpp
@@ -3309,7 +3309,7 @@ public:
LIMITED_METHOD_DAC_CONTRACT;
_ASSERTE(IMD_IsWrapperStubWithInstantiations());
- return RelativePointer<PTR_MethodDesc>::GetValueAtPtr(PTR_HOST_MEMBER_TADDR(InstantiatedMethodDesc, this, m_pWrappedMethodDesc));
+ return RelativeFixupPointer<PTR_MethodDesc>::GetValueAtPtr(PTR_HOST_MEMBER_TADDR(InstantiatedMethodDesc, this, m_pWrappedMethodDesc));
}
#ifndef DACCESS_COMPILE