Skip to content

Commit

Permalink
[Preview 7] Fix debugger thread context validation after recent change
Browse files Browse the repository at this point in the history
- Port of dotnet#55839 to preview 7
- Followup fix to dotnet#55185
  • Loading branch information
kouvel committed Jul 17, 2021
1 parent 69c3212 commit 4780ee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/debug/ee/debugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15911,7 +15911,7 @@ BOOL Debugger::IsThreadContextInvalid(Thread *pThread, CONTEXT *pCtx)
if (!success)
{
ctx.ContextFlags = CONTEXT_CONTROL;
BOOL success = pThread->GetThreadContext(&ctx);
success = pThread->GetThreadContext(&ctx);
if (success)
{
pCtx = &ctx;
Expand Down

0 comments on commit 4780ee6

Please sign in to comment.