Skip to content

Commit 879a313

Browse files
committed
step into functionality fixed in debugger agent
1 parent 6837a3b commit 879a313

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

JavaScriptCore/inspector/agents/InspectorDebuggerAgent.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,8 @@ void InspectorDebuggerAgent::stepInto(ErrorString* errorString)
483483

484484
m_injectedScriptManager->releaseObjectGroup(InspectorDebuggerAgent::backtraceObjectGroup);
485485
scriptDebugServer().stepIntoStatement();
486-
m_listener->stepInto();
486+
if (m_listener)
487+
m_listener->stepInto();
487488
}
488489

489490
void InspectorDebuggerAgent::stepOut(ErrorString* errorString)

0 commit comments

Comments
 (0)