Title: [220341] branches/safari-604-branch/Source/WebKit
Revision
220341
Author
[email protected]
Date
2017-08-07 09:42:41 -0700 (Mon, 07 Aug 2017)

Log Message

Cherry-pick r220273. rdar://problem/33732762

Modified Paths

Diff

Modified: branches/safari-604-branch/Source/WebKit/ChangeLog (220340 => 220341)


--- branches/safari-604-branch/Source/WebKit/ChangeLog	2017-08-07 16:42:38 UTC (rev 220340)
+++ branches/safari-604-branch/Source/WebKit/ChangeLog	2017-08-07 16:42:41 UTC (rev 220341)
@@ -1,5 +1,23 @@
 2017-08-07  Jason Marcell  <[email protected]>
 
+        Cherry-pick r220273. rdar://problem/33732762
+
+    2017-08-04  Andreas Kling  <[email protected]>
+
+            NetworkLoad should always invoke its redirect completion handler
+            https://bugs.webkit.org/show_bug.cgi?id=175179
+            <rdar://problem/33464999>
+
+            Reviewed by Chris Dumez.
+
+            Make sure the redirect completion handler is always invoked,
+            just like we already did for the response completion handler.
+
+            * NetworkProcess/NetworkLoad.cpp:
+            (WebKit::NetworkLoad::~NetworkLoad):
+
+2017-08-07  Jason Marcell  <[email protected]>
+
         Cherry-pick r220185. rdar://problem/33713534
 
     2017-08-02  Chris Dumez  <[email protected]>

Modified: branches/safari-604-branch/Source/WebKit/NetworkProcess/NetworkLoad.cpp (220340 => 220341)


--- branches/safari-604-branch/Source/WebKit/NetworkProcess/NetworkLoad.cpp	2017-08-07 16:42:38 UTC (rev 220340)
+++ branches/safari-604-branch/Source/WebKit/NetworkProcess/NetworkLoad.cpp	2017-08-07 16:42:41 UTC (rev 220341)
@@ -135,6 +135,8 @@
 #if USE(NETWORK_SESSION)
     if (m_responseCompletionHandler)
         m_responseCompletionHandler(PolicyIgnore);
+    if (m_redirectCompletionHandler)
+        m_redirectCompletionHandler({ });
 #if USE(PROTECTION_SPACE_AUTH_CALLBACK)
     if (m_challengeCompletionHandler)
         m_challengeCompletionHandler(AuthenticationChallengeDisposition::Cancel, { });
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to