We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6837a3b commit 879a313Copy full SHA for 879a313
JavaScriptCore/inspector/agents/InspectorDebuggerAgent.cpp
@@ -483,7 +483,8 @@ void InspectorDebuggerAgent::stepInto(ErrorString* errorString)
483
484
m_injectedScriptManager->releaseObjectGroup(InspectorDebuggerAgent::backtraceObjectGroup);
485
scriptDebugServer().stepIntoStatement();
486
- m_listener->stepInto();
+ if (m_listener)
487
+ m_listener->stepInto();
488
}
489
490
void InspectorDebuggerAgent::stepOut(ErrorString* errorString)
0 commit comments