Title: [194195] tags/Safari-602.1.13.0.1/Source/_javascript_Core
Revision
194195
Author
[email protected]
Date
2015-12-16 17:14:10 -0800 (Wed, 16 Dec 2015)

Log Message

Merged r193355.  rdar://problem/23737051

Modified Paths

Diff

Modified: tags/Safari-602.1.13.0.1/Source/_javascript_Core/ChangeLog (194194 => 194195)


--- tags/Safari-602.1.13.0.1/Source/_javascript_Core/ChangeLog	2015-12-17 01:12:26 UTC (rev 194194)
+++ tags/Safari-602.1.13.0.1/Source/_javascript_Core/ChangeLog	2015-12-17 01:14:10 UTC (rev 194195)
@@ -1,5 +1,21 @@
 2015-12-16  Babak Shafiei  <[email protected]>
 
+        Merge r193355.
+
+    2015-12-03  Joseph Pecoraro  <[email protected]>
+
+            REGRESSION:(r192753): Remote Web Inspector: RemoteInspector::sendMessageToRemote with null connection
+            https://bugs.webkit.org/show_bug.cgi?id=151789
+
+            Reviewed by Timothy Hatcher.
+
+            * inspector/remote/RemoteInspector.mm:
+            (Inspector::RemoteInspector::sendMessageToRemote):
+            Bail if the connection is no longer available. It may have
+            been closed remotely.
+
+2015-12-16  Babak Shafiei  <[email protected]>
+
         Merge r193354.
 
     2015-12-03  Joseph Pecoraro  <[email protected]>

Modified: tags/Safari-602.1.13.0.1/Source/_javascript_Core/inspector/remote/RemoteInspector.mm (194194 => 194195)


--- tags/Safari-602.1.13.0.1/Source/_javascript_Core/inspector/remote/RemoteInspector.mm	2015-12-17 01:12:26 UTC (rev 194194)
+++ tags/Safari-602.1.13.0.1/Source/_javascript_Core/inspector/remote/RemoteInspector.mm	2015-12-17 01:14:10 UTC (rev 194195)
@@ -268,6 +268,8 @@
         return;
 
     auto connection = m_connectionMap.get(identifier);
+    if (!connection)
+        return;
 
     NSDictionary *userInfo = @{
         WIRRawDataKey: [static_cast<NSString *>(message) dataUsingEncoding:NSUTF8StringEncoding],
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to