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

Log Message

[WinCairo] Another unreviewed build fix.

* platform/network/curl/MultipartHandle.cpp:
(WebCore::MultipartHandle::parseHeadersIfPossible):

Modified Paths

Diff

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


--- trunk/Source/WebCore/ChangeLog	2016-04-15 20:55:28 UTC (rev 199608)
+++ trunk/Source/WebCore/ChangeLog	2016-04-15 20:57:15 UTC (rev 199609)
@@ -1,3 +1,10 @@
+2016-04-15  Alex Christensen  <[email protected]>
+
+        [WinCairo] Another unreviewed build fix.
+
+        * platform/network/curl/MultipartHandle.cpp:
+        (WebCore::MultipartHandle::parseHeadersIfPossible):
+
 2016-04-15  Brent Fulgham  <[email protected]>
 
         [WinCairo] Unreviewed build fix.,

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


--- trunk/Source/WebCore/platform/network/curl/MultipartHandle.cpp	2016-04-15 20:55:28 UTC (rev 199608)
+++ trunk/Source/WebCore/platform/network/curl/MultipartHandle.cpp	2016-04-15 20:57:15 UTC (rev 199609)
@@ -155,7 +155,7 @@
         if (name.isEmpty())
             break;
 
-        m_headers.add(name, value);
+        m_headers.add(name.toString(), value);
     }
 
     m_buffer.remove(0, totalConsumedLength + 1);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to