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:
authorAndrew Au <andrewau@microsoft.com>2017-06-15 21:07:48 +0300
committerAndrew Au <andrewau@microsoft.com>2017-06-15 21:07:48 +0300
commit34b00937c6c83185d3f3512df2b71d777263f3b4 (patch)
tree5e4c9b86627266158e0c9bc66afb934f1c3bcd99 /src/Native/Runtime/gcrhscan.cpp
parent3805f6558511e79f9367723147f1aeff1be4cc20 (diff)
Debugger Support
[tfs-changeset: 1661846]
Diffstat (limited to 'src/Native/Runtime/gcrhscan.cpp')
-rw-r--r--src/Native/Runtime/gcrhscan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Native/Runtime/gcrhscan.cpp b/src/Native/Runtime/gcrhscan.cpp
index 31ac4d7a5..e342e2c78 100644
--- a/src/Native/Runtime/gcrhscan.cpp
+++ b/src/Native/Runtime/gcrhscan.cpp
@@ -49,7 +49,7 @@ void EnumAllStaticGCRefs(EnumGcRefCallbackFunc * fn, EnumGcRefScanContext * sc)
void GCToEEInterface::GcScanRoots(EnumGcRefCallbackFunc * fn, int condemned, int max_gen, EnumGcRefScanContext * sc)
{
- DebuggerProtectedBufferList* cursor = DebuggerHook::s_debuggerProtectedBuffers;
+ DebuggerProtectedBufferListNode* cursor = DebuggerHook::s_debuggerProtectedBuffers;
while (cursor != nullptr)
{
GcEnumObjectsConservatively((PTR_PTR_Object)cursor->address, (PTR_PTR_Object)(cursor->address + cursor->size), fn, sc);