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
6 changes: 6 additions & 0 deletions src/coreclr/src/vm/stubmgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1844,6 +1844,12 @@ BOOL ILStubManager::TraceManager(Thread *thread,
trace->InitForUnmanaged(target);
}
#endif // FEATURE_COMINTEROP
else if (pStubMD->IsStructMarshalStub())
{
// There's no "target" for struct marshalling stubs
// so we have nowhere to tell the debugger to move the breakpoint.
return FALSE;
}
else
{
// This is either direct forward P/Invoke or a CLR-to-COM call, the argument is MD
Expand Down