Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/coreclr/debug/di/rsstackwalk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -915,6 +915,15 @@ HRESULT CordbAsyncStackWalk::PopulateFrame()
&nextContinuation,
&state));

// Skip continuations with null DiagnosticIP. These are infrastructure
// continuations (e.g. ValueTaskContinuation) that have no user code
// associated with them and cannot be represented as a debug frame.
if (diagnosticIP == 0)
{
m_continuationAddress = nextContinuation;
continue;
}

NativeCodeFunctionData codeData;
VMPTR_Module pModule;
mdMethodDef methodDef;
Expand Down
Loading