Title: [199608] trunk/Source/WebCore
Revision
199608
Author
[email protected]
Date
2016-04-15 13:55:28 -0700 (Fri, 15 Apr 2016)

Log Message

[WinCairo] Unreviewed build fix.,

* platform/network/curl/MultipartHandle.cpp:
(WebCore::MultipartHandle::parseHeadersIfPossible): Correct for new method signature.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (199607 => 199608)


--- trunk/Source/WebCore/ChangeLog	2016-04-15 19:59:20 UTC (rev 199607)
+++ trunk/Source/WebCore/ChangeLog	2016-04-15 20:55:28 UTC (rev 199608)
@@ -1,3 +1,10 @@
+2016-04-15  Brent Fulgham  <[email protected]>
+
+        [WinCairo] Unreviewed build fix.,
+
+        * platform/network/curl/MultipartHandle.cpp:
+        (WebCore::MultipartHandle::parseHeadersIfPossible): Correct for new method signature.
+
 2016-04-15  Myles C. Maxfield  <[email protected]>
 
         ASSERT when loading github.com

Modified: trunk/Source/WebCore/platform/network/curl/MultipartHandle.cpp (199607 => 199608)


--- trunk/Source/WebCore/platform/network/curl/MultipartHandle.cpp	2016-04-15 19:59:20 UTC (rev 199607)
+++ trunk/Source/WebCore/platform/network/curl/MultipartHandle.cpp	2016-04-15 20:55:28 UTC (rev 199608)
@@ -138,7 +138,7 @@
 
     // Parse the HTTP headers.
     String value;
-    String name;
+    StringView name;
     char* p = const_cast<char*>(content);
     const char* end = content + contentLength;
     size_t totalConsumedLength = 0;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to