Title: [241566] trunk/Source/WebCore
Revision
241566
Author
ross.kirsl...@sony.com
Date
2019-02-14 15:06:06 -0800 (Thu, 14 Feb 2019)

Log Message

Unreviewed build fix for WinCairo Debug after r241559.

* platform/network/curl/CurlContext.cpp:
(WebCore::CurlContext::CurlContext):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (241565 => 241566)


--- trunk/Source/WebCore/ChangeLog	2019-02-14 22:55:24 UTC (rev 241565)
+++ trunk/Source/WebCore/ChangeLog	2019-02-14 23:06:06 UTC (rev 241566)
@@ -1,5 +1,12 @@
 2019-02-14  Ross Kirsling  <ross.kirsl...@sony.com>
 
+        Unreviewed build fix for WinCairo Debug after r241559.
+
+        * platform/network/curl/CurlContext.cpp:
+        (WebCore::CurlContext::CurlContext):
+
+2019-02-14  Ross Kirsling  <ross.kirsl...@sony.com>
+
         [WTF] Add environment variable helpers
         https://bugs.webkit.org/show_bug.cgi?id=192405
 

Modified: trunk/Source/WebCore/platform/network/curl/CurlContext.cpp (241565 => 241566)


--- trunk/Source/WebCore/platform/network/curl/CurlContext.cpp	2019-02-14 22:55:24 UTC (rev 241565)
+++ trunk/Source/WebCore/platform/network/curl/CurlContext.cpp	2019-02-14 23:06:06 UTC (rev 241566)
@@ -87,7 +87,7 @@
     m_scheduler = std::make_unique<CurlRequestScheduler>(maxConnects, maxTotalConnections, maxHostConnections);
 
 #ifndef NDEBUG
-    m_verbose = Environment::get("DEBUG_CURL");
+    m_verbose = !!Environment::get("DEBUG_CURL");
 
     if (const char* logFile = Environment::getRaw("CURL_LOG_FILE"))
         m_logFile = fopen(logFile, "a");
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to