Title: [171727] branches/safari-600.1-branch/Source/_javascript_Core
Revision
171727
Author
[email protected]
Date
2014-07-29 01:23:44 -0700 (Tue, 29 Jul 2014)

Log Message

Merged r171688.  <rdar://problem/17364180>

Modified Paths

Diff

Modified: branches/safari-600.1-branch/Source/_javascript_Core/ChangeLog (171726 => 171727)


--- branches/safari-600.1-branch/Source/_javascript_Core/ChangeLog	2014-07-29 08:18:04 UTC (rev 171726)
+++ branches/safari-600.1-branch/Source/_javascript_Core/ChangeLog	2014-07-29 08:23:44 UTC (rev 171727)
@@ -1,3 +1,18 @@
+2014-07-29  Lucas Forschler  <[email protected]>
+
+        Merge r171688
+
+    2014-07-28  Joseph Pecoraro  <[email protected]>
+
+            JSContext Inspector: crash when using step-into
+            https://bugs.webkit.org/show_bug.cgi?id=135345
+
+            Reviewed by Timothy Hatcher.
+
+            * inspector/agents/InspectorDebuggerAgent.cpp:
+            (Inspector::InspectorDebuggerAgent::stepInto):
+            Null check m_listener since it may not be set.
+
 2014-07-28  Matthew Hanson  <[email protected]>
 
         Merge r171680. <rdar://problem/17834136>

Modified: branches/safari-600.1-branch/Source/_javascript_Core/inspector/agents/InspectorDebuggerAgent.cpp (171726 => 171727)


--- branches/safari-600.1-branch/Source/_javascript_Core/inspector/agents/InspectorDebuggerAgent.cpp	2014-07-29 08:18:04 UTC (rev 171726)
+++ branches/safari-600.1-branch/Source/_javascript_Core/inspector/agents/InspectorDebuggerAgent.cpp	2014-07-29 08:23:44 UTC (rev 171727)
@@ -483,7 +483,9 @@
 
     m_injectedScriptManager->releaseObjectGroup(InspectorDebuggerAgent::backtraceObjectGroup);
     scriptDebugServer().stepIntoStatement();
-    m_listener->stepInto();
+
+    if (m_listener)
+        m_listener->stepInto();
 }
 
 void InspectorDebuggerAgent::stepOut(ErrorString* errorString)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to