We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 751a10e commit 0cb7b82Copy full SHA for 0cb7b82
src/coreclr/src/vm/stubmgr.cpp
@@ -1844,6 +1844,12 @@ BOOL ILStubManager::TraceManager(Thread *thread,
1844
trace->InitForUnmanaged(target);
1845
}
1846
#endif // FEATURE_COMINTEROP
1847
+ else if (pStubMD->IsStructMarshalStub())
1848
+ {
1849
+ // There's no "target" for struct marshalling stubs
1850
+ // so we have nowhere to tell the debugger to move the breakpoint.
1851
+ return FALSE;
1852
+ }
1853
else
1854
{
1855
// This is either direct forward P/Invoke or a CLR-to-COM call, the argument is MD
0 commit comments