summaryrefslogtreecommitdiff
path: root/src/dlls/dbgshim
diff options
context:
space:
mode:
authorMike McLaughlin <mikem@microsoft.com>2016-10-24 18:59:13 -0700
committerGitHub <noreply@github.com>2016-10-24 18:59:13 -0700
commit35989ce51b8f60670186b80eef5fb9dba6127fd2 (patch)
treeeb375a74bf6b8c6d3e264a3a28e16a687de931fc /src/dlls/dbgshim
parent9735854c9e1222ba63340b0c62afefebd779ee66 (diff)
downloadcoreclr-35989ce51b8f60670186b80eef5fb9dba6127fd2.tar.gz
coreclr-35989ce51b8f60670186b80eef5fb9dba6127fd2.tar.bz2
coreclr-35989ce51b8f60670186b80eef5fb9dba6127fd2.zip
Fix performance problem introduced in previous change. (#7783)
Diffstat (limited to 'src/dlls/dbgshim')
-rw-r--r--src/dlls/dbgshim/dbgshim.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dlls/dbgshim/dbgshim.cpp b/src/dlls/dbgshim/dbgshim.cpp
index 4d6dc5a6e3..aeee778543 100644
--- a/src/dlls/dbgshim/dbgshim.cpp
+++ b/src/dlls/dbgshim/dbgshim.cpp
@@ -433,7 +433,7 @@ public:
DWORD arrayLength = 0;
// Wake up runtime(s)
- HRESULT hr = InternalEnumerateCLRs(&handleArray, &stringArray, &arrayLength);
+ HRESULT hr = EnumerateCLRs(m_processId, &handleArray, &stringArray, &arrayLength);
if (SUCCEEDED(hr))
{
WakeRuntimes(handleArray, arrayLength);