Title: [202940] trunk/Source/WebKit2
Revision
202940
Author
[email protected]
Date
2016-07-07 15:59:14 -0700 (Thu, 07 Jul 2016)

Log Message

Followup to r202939.
https://bugs.webkit.org/show_bug.cgi?id=159526

* NetworkProcess/NetworkResourceLoader.cpp:
(WebKit::NetworkResourceLoader::didFailLoading):
We need the correct destination id when sending a message.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (202939 => 202940)


--- trunk/Source/WebKit2/ChangeLog	2016-07-07 22:42:43 UTC (rev 202939)
+++ trunk/Source/WebKit2/ChangeLog	2016-07-07 22:59:14 UTC (rev 202940)
@@ -1,5 +1,14 @@
 2016-07-07  Alex Christensen  <[email protected]>
 
+        Followup to r202939.
+        https://bugs.webkit.org/show_bug.cgi?id=159526
+
+        * NetworkProcess/NetworkResourceLoader.cpp:
+        (WebKit::NetworkResourceLoader::didFailLoading):
+        We need the correct destination id when sending a message.
+
+2016-07-07  Alex Christensen  <[email protected]>
+
         Fix crash when sending failure message to closed WebProcess
         https://bugs.webkit.org/show_bug.cgi?id=159526
         <rdar://problem/26767037>

Modified: trunk/Source/WebKit2/NetworkProcess/NetworkResourceLoader.cpp (202939 => 202940)


--- trunk/Source/WebKit2/NetworkProcess/NetworkResourceLoader.cpp	2016-07-07 22:42:43 UTC (rev 202939)
+++ trunk/Source/WebKit2/NetworkProcess/NetworkResourceLoader.cpp	2016-07-07 22:59:14 UTC (rev 202940)
@@ -406,7 +406,7 @@
         m_synchronousLoadData->error = error;
         sendReplyToSynchronousRequest(*m_synchronousLoadData, nullptr);
     } else if (auto* connection = messageSenderConnection())
-        connection->send(Messages::WebResourceLoader::DidFailResourceLoad(error), 0, 0);
+        connection->send(Messages::WebResourceLoader::DidFailResourceLoad(error), messageSenderDestinationID(), 0);
 
     cleanup();
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to