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 7fafe7e commit 3f54106Copy full SHA for 3f54106
PmipRunner.cs
@@ -36,7 +36,7 @@ public DkmStackWalkFrame PmipStackFrame()
36
var eval = EvaluateExpression(call, r =>
37
{
38
isNull = r.Address.InstructionAddress.CPUInstructionPart.InstructionPointer == 0;
39
- result = r.Value?.Split('"')[1];
+ result = isNull ? "<ERROR>" : r.Value?.Split('"')[1];
40
});
41
42
if (!eval || isNull)
0 commit comments