summaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
authorMike McLaughlin <mikem@microsoft.com>2016-03-17 21:37:09 -0700
committerMike McLaughlin <mikem@microsoft.com>2016-03-17 21:37:09 -0700
commit3bef2394b5dcd2e09bc61dae5e55d35ab43936e3 (patch)
tree40d62d45eadde12cc0d0f27e677e4ebf5e1c9f10 /src/debug
parent6aae434fbf79975d1e17d12c65f18a9208f36f7e (diff)
parent36ac82a4c9a2137cc9b213adc340d3a4490d4811 (diff)
downloadcoreclr-3bef2394b5dcd2e09bc61dae5e55d35ab43936e3.tar.gz
coreclr-3bef2394b5dcd2e09bc61dae5e55d35ab43936e3.tar.bz2
coreclr-3bef2394b5dcd2e09bc61dae5e55d35ab43936e3.zip
Merge pull request #3783 from mikem8361/fixsosbp
Fixed problem with bpmd not working sometimes.
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/daccess/daccess.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/debug/daccess/daccess.cpp b/src/debug/daccess/daccess.cpp
index 2465c62cef..4f500d9e6a 100644
--- a/src/debug/daccess/daccess.cpp
+++ b/src/debug/daccess/daccess.cpp
@@ -7232,6 +7232,10 @@ ClrDataAccess::GetDacGlobals()
{
return CORDBG_E_MISSING_DEBUGGER_EXPORTS;
}
+ if (g_dacGlobals.ThreadStore__s_pThreadStore == NULL)
+ {
+ return CORDBG_E_UNSUPPORTED;
+ }
return S_OK;
#else
HRESULT status = E_FAIL;