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>2017-07-14 06:03:51 +0300
committerMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2017-07-14 06:03:51 +0300
commit180830f17230196c5d9a99963f2f1374aa54a03e (patch)
tree1f93344979c79fe172ad32f85668bcca4188d399 /src/Native/Runtime/EHHelpers.cpp
parent2278ebc3ee8a2a655a64e263450a0050d3ba37e8 (diff)
Fix inconsistent EEType casing (#4155)
Diffstat (limited to 'src/Native/Runtime/EHHelpers.cpp')
-rw-r--r--src/Native/Runtime/EHHelpers.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Native/Runtime/EHHelpers.cpp b/src/Native/Runtime/EHHelpers.cpp
index 64b5f27ce..2484e3355 100644
--- a/src/Native/Runtime/EHHelpers.cpp
+++ b/src/Native/Runtime/EHHelpers.cpp
@@ -87,16 +87,16 @@ COOP_PINVOKE_HELPER(void *, RhpGetClasslibFunctionFromCodeAddress, (void * addre
// Unmanaged helper to locate one of two classlib-provided functions that the runtime needs to
// implement throwing of exceptions out of Rtm, and fail-fast. This may return NULL if the classlib
// found via the provided address does not have the necessary exports.
-COOP_PINVOKE_HELPER(void *, RhpGetClasslibFunctionFromEEtype, (EEType * pEEtype, ClasslibFunctionId functionId))
+COOP_PINVOKE_HELPER(void *, RhpGetClasslibFunctionFromEEType, (EEType * pEEType, ClasslibFunctionId functionId))
{
- if (pEEtype->HasTypeManager())
+ if (pEEType->HasTypeManager())
{
- return pEEtype->GetTypeManagerPtr()->AsTypeManager()->GetClasslibFunction(functionId);
+ return pEEType->GetTypeManagerPtr()->AsTypeManager()->GetClasslibFunction(functionId);
}
else
{
RuntimeInstance * pRI = GetRuntimeInstance();
- Module * pModule = pRI->FindModuleByAddress(pEEtype);
+ Module * pModule = pRI->FindModuleByAddress(pEEType);
if (pModule != NULL)
{
return pModule->GetClasslibFunction(functionId);