Title: [235704] branches/safari-606-branch/Source/WebKit
Revision
235704
Author
[email protected]
Date
2018-09-05 14:52:45 -0700 (Wed, 05 Sep 2018)

Log Message

Cherry-pick r234908. rdar://problem/44144086

    [WinCairo] Unreviewed build fix after r234896.

    * NetworkProcess/curl/NetworkDataTaskCurl.cpp:
    (WebKit::NetworkDataTaskCurl::tryHttpAuthentication):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@234908 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-606-branch/Source/WebKit/ChangeLog (235703 => 235704)


--- branches/safari-606-branch/Source/WebKit/ChangeLog	2018-09-05 21:52:43 UTC (rev 235703)
+++ branches/safari-606-branch/Source/WebKit/ChangeLog	2018-09-05 21:52:45 UTC (rev 235704)
@@ -1,5 +1,23 @@
 2018-09-05  Babak Shafiei  <[email protected]>
 
+        Cherry-pick r234908. rdar://problem/44144086
+
+    [WinCairo] Unreviewed build fix after r234896.
+    
+    * NetworkProcess/curl/NetworkDataTaskCurl.cpp:
+    (WebKit::NetworkDataTaskCurl::tryHttpAuthentication):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@234908 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2018-08-15  Ross Kirsling  <[email protected]>
+
+            [WinCairo] Unreviewed build fix after r234896.
+
+            * NetworkProcess/curl/NetworkDataTaskCurl.cpp:
+            (WebKit::NetworkDataTaskCurl::tryHttpAuthentication):
+
+2018-09-05  Babak Shafiei  <[email protected]>
+
         Cherry-pick r234905. rdar://problem/44144059
 
     Can't share an app on AppStore to WeChat due to a release assert

Modified: branches/safari-606-branch/Source/WebKit/NetworkProcess/curl/NetworkDataTaskCurl.cpp (235703 => 235704)


--- branches/safari-606-branch/Source/WebKit/NetworkProcess/curl/NetworkDataTaskCurl.cpp	2018-09-05 21:52:43 UTC (rev 235703)
+++ branches/safari-606-branch/Source/WebKit/NetworkProcess/curl/NetworkDataTaskCurl.cpp	2018-09-05 21:52:45 UTC (rev 235704)
@@ -338,7 +338,7 @@
         }
     }
 
-    m_client->didReceiveChallenge(AuthenticationChallenge(challenge), [this, protectedThis = makeRef(*this), ](AuthenticationChallengeDisposition disposition, const Credential& credential) {
+    m_client->didReceiveChallenge(AuthenticationChallenge(challenge), [this, protectedThis = makeRef(*this), challenge](AuthenticationChallengeDisposition disposition, const Credential& credential) {
         if (m_state == State::Canceling || m_state == State::Completed)
             return;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to