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 c20d9b0 commit ee6dee3Copy full SHA for ee6dee3
src/CLR/Debugger/Debugger.cpp
@@ -2727,7 +2727,7 @@ bool CLR_DBG_Debugger::Debugging_Value_GetStack(WP_Message *msg)
2727
num = isInline ? md.target->argumentsCount : md.target->argumentsCount;
2728
#else
2729
array = call->m_arguments;
2730
- num = call->m_call.m_target->ArgumentsCount;
+ num = call->m_call.target->argumentsCount;
2731
#endif
2732
break;
2733
@@ -2737,7 +2737,7 @@ bool CLR_DBG_Debugger::Debugging_Value_GetStack(WP_Message *msg)
2737
num = isInline ? md.target->localsCount : md.target->localsCount;
2738
2739
array = call->m_locals;
2740
- num = call->m_call.m_target->LocalsCount;
+ num = call->m_call.target->localsCount;
2741
2742
2743
0 commit comments