summaryrefslogtreecommitdiff
path: root/src/vm/debugdebugger.cpp
diff options
context:
space:
mode:
authorJohn Salem <josalem@microsoft.com>2019-02-25 14:53:16 -0800
committerJohn Salem <josalem@microsoft.com>2019-02-25 14:53:16 -0800
commit3d26dad131abc354aeb4388139ecfaafe6cc4c60 (patch)
treeb8c75d4778294c121ec33ca0b4633f7d68f6b817 /src/vm/debugdebugger.cpp
parent8d1908e7ff4fbf01dc6c84e174dee79ff0cdf826 (diff)
downloadcoreclr-3d26dad131abc354aeb4388139ecfaafe6cc4c60.tar.gz
coreclr-3d26dad131abc354aeb4388139ecfaafe6cc4c60.tar.bz2
coreclr-3d26dad131abc354aeb4388139ecfaafe6cc4c60.zip
Simplify getting exposed Assembly, and specifies parameter types for GetSourceLineInfo
Diffstat (limited to 'src/vm/debugdebugger.cpp')
-rw-r--r--src/vm/debugdebugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/debugdebugger.cpp b/src/vm/debugdebugger.cpp
index ca6cfb0078..d63433f4f4 100644
--- a/src/vm/debugdebugger.cpp
+++ b/src/vm/debugdebugger.cpp
@@ -518,7 +518,7 @@ FCIMPL4(void, DebugStackTrace::GetStackFramesInternal,
pILI4[iNumValidFrames] = data.pElements[i].dwILOffset;
// Assembly
- OBJECTREF pAssembly = pFunc->GetAssembly()->GetDomainAssembly()->GetExposedAssemblyObject();
+ OBJECTREF pAssembly = pFunc->GetAssembly()->GetExposedObject();
pStackFrameHelper->rgAssembly->SetAt(iNumValidFrames, pAssembly);
if (data.fDoWeHaveAnyFramesFromForeignStackTrace)