summaryrefslogtreecommitdiff
path: root/src/vm/gcheaputilities.cpp
diff options
context:
space:
mode:
authorAditya Mandaleeka <adityam@microsoft.com>2017-04-05 16:55:30 -0700
committerAditya Mandaleeka <adityam@microsoft.com>2017-04-05 19:32:23 -0700
commit273e63414deccefd1ad048062e4d1ebfe5e5eb50 (patch)
tree52740baaabb89a6065b285050a7bc29145626d9b /src/vm/gcheaputilities.cpp
parente17f40a186c294f977e336cab049d9026cf40c78 (diff)
downloadcoreclr-273e63414deccefd1ad048062e4d1ebfe5e5eb50.tar.gz
coreclr-273e63414deccefd1ad048062e4d1ebfe5e5eb50.tar.bz2
coreclr-273e63414deccefd1ad048062e4d1ebfe5e5eb50.zip
Move handle table stuff out of gcheaputilities.
Diffstat (limited to 'src/vm/gcheaputilities.cpp')
-rw-r--r--src/vm/gcheaputilities.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/gcheaputilities.cpp b/src/vm/gcheaputilities.cpp
index 730728927a..60f08683f8 100644
--- a/src/vm/gcheaputilities.cpp
+++ b/src/vm/gcheaputilities.cpp
@@ -45,7 +45,7 @@ void ValidateHandleAndAppDomain(OBJECTHANDLE handle)
OBJECTREF objRef = ObjectToOBJECTREF(*(Object**)handle);
VALIDATEOBJECTREF(objRef);
- IGCHandleTable *pHandleTable = GCHeapUtilities::GetGCHandleTable();
+ IGCHandleTable *pHandleTable = GCHandleTableUtilities::GetGCHandleTable();
void* handleTable = pHandleTable->GetHandleTableForHandle(handle);
DWORD context = (DWORD)pHandleTable->GetHandleTableContext(handleTable);