Title: [194182] tags/Safari-602.1.13.4/Source/_javascript_Core
- Revision
- 194182
- Author
- [email protected]
- Date
- 2015-12-16 15:27:39 -0800 (Wed, 16 Dec 2015)
Log Message
Merged r193355. rdar://problem/23737051
Modified Paths
Diff
Modified: tags/Safari-602.1.13.4/Source/_javascript_Core/ChangeLog (194181 => 194182)
--- tags/Safari-602.1.13.4/Source/_javascript_Core/ChangeLog 2015-12-16 23:26:18 UTC (rev 194181)
+++ tags/Safari-602.1.13.4/Source/_javascript_Core/ChangeLog 2015-12-16 23:27:39 UTC (rev 194182)
@@ -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.4/Source/_javascript_Core/inspector/remote/RemoteInspector.mm (194181 => 194182)
--- tags/Safari-602.1.13.4/Source/_javascript_Core/inspector/remote/RemoteInspector.mm 2015-12-16 23:26:18 UTC (rev 194181)
+++ tags/Safari-602.1.13.4/Source/_javascript_Core/inspector/remote/RemoteInspector.mm 2015-12-16 23:27:39 UTC (rev 194182)
@@ -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