diff options
Diffstat (limited to 'src/debug')
-rw-r--r-- | src/debug/daccess/daccess.cpp | 4 |
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; |