Title: [234908] trunk/Source/WebKit
Revision
234908
Author
ross.kirsl...@sony.com
Date
2018-08-15 17:04:48 -0700 (Wed, 15 Aug 2018)

Log Message

[WinCairo] Unreviewed build fix after r234896.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (234907 => 234908)


--- trunk/Source/WebKit/ChangeLog	2018-08-15 23:46:34 UTC (rev 234907)
+++ trunk/Source/WebKit/ChangeLog	2018-08-16 00:04:48 UTC (rev 234908)
@@ -1,3 +1,10 @@
+2018-08-15  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        [WinCairo] Unreviewed build fix after r234896.
+
+        * NetworkProcess/curl/NetworkDataTaskCurl.cpp:
+        (WebKit::NetworkDataTaskCurl::tryHttpAuthentication):
+
 2018-08-15  Ryosuke Niwa  <rn...@webkit.org>
 
         Can't share an app on AppStore to WeChat due to a release assert

Modified: trunk/Source/WebKit/NetworkProcess/curl/NetworkDataTaskCurl.cpp (234907 => 234908)


--- trunk/Source/WebKit/NetworkProcess/curl/NetworkDataTaskCurl.cpp	2018-08-15 23:46:34 UTC (rev 234907)
+++ trunk/Source/WebKit/NetworkProcess/curl/NetworkDataTaskCurl.cpp	2018-08-16 00:04:48 UTC (rev 234908)
@@ -339,7 +339,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
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to