Title: [206163] trunk/Source/WebCore
Revision
206163
Author
commit-qu...@webkit.org
Date
2016-09-20 12:11:37 -0700 (Tue, 20 Sep 2016)

Log Message

[WinCairo]  Not building since 206044
https://bugs.webkit.org/show_bug.cgi?id=162246

Patch by Christopher Reid <christopher.r...@am.sony.com> on 2016-09-20
Reviewed by Alex Christensen.

No new tests. No change in behaviour.

* bindings/js/JSWebGLRenderingContextCustom.cpp:
* platform/network/curl/CookieJarCurl.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (206162 => 206163)


--- trunk/Source/WebCore/ChangeLog	2016-09-20 18:46:26 UTC (rev 206162)
+++ trunk/Source/WebCore/ChangeLog	2016-09-20 19:11:37 UTC (rev 206163)
@@ -1,3 +1,15 @@
+2016-09-20  Christopher Reid  <christopher.r...@am.sony.com>
+
+        [WinCairo]  Not building since 206044
+        https://bugs.webkit.org/show_bug.cgi?id=162246
+
+        Reviewed by Alex Christensen.
+
+        No new tests. No change in behaviour.
+
+        * bindings/js/JSWebGLRenderingContextCustom.cpp:
+        * platform/network/curl/CookieJarCurl.cpp:
+
 2016-09-20  Alex Christensen  <achristen...@webkit.org>
 
         Align URLParser with web platform tests when parsing non-special relative URLs ending in AuthorityOrHost state

Modified: trunk/Source/WebCore/bindings/js/JSWebGLRenderingContextCustom.cpp (206162 => 206163)


--- trunk/Source/WebCore/bindings/js/JSWebGLRenderingContextCustom.cpp	2016-09-20 18:46:26 UTC (rev 206162)
+++ trunk/Source/WebCore/bindings/js/JSWebGLRenderingContextCustom.cpp	2016-09-20 19:11:37 UTC (rev 206163)
@@ -30,6 +30,7 @@
 #include "DOMWrapperWorld.h"
 #include <_javascript_Core/JSCellInlines.h>
 #include <_javascript_Core/StructureInlines.h>
+#include <heap/HeapInlines.h>
 #include <heap/SlotVisitorInlines.h>
 
 using namespace JSC;

Modified: trunk/Source/WebCore/platform/network/curl/CookieJarCurl.cpp (206162 => 206163)


--- trunk/Source/WebCore/platform/network/curl/CookieJarCurl.cpp	2016-09-20 18:46:26 UTC (rev 206162)
+++ trunk/Source/WebCore/platform/network/curl/CookieJarCurl.cpp	2016-09-20 19:11:37 UTC (rev 206163)
@@ -223,12 +223,18 @@
     
     StringBuilder cookieStr;
     cookieStr.reserveCapacity(finalStringLength);
-    cookieStr.append(domain + "\t");
-    cookieStr.append(allowSubdomains + "\t");
-    cookieStr.append(path + "\t");
-    cookieStr.append(secure + "\t");
-    cookieStr.append(expiresStr + "\t");
-    cookieStr.append(cookieName + "\t");
+    cookieStr.append(domain);
+    cookieStr.append("\t");
+    cookieStr.append(allowSubdomains);
+    cookieStr.append("\t");
+    cookieStr.append(path);
+    cookieStr.append("\t");
+    cookieStr.append(secure);
+    cookieStr.append("\t");
+    cookieStr.append(expiresStr);
+    cookieStr.append("\t");
+    cookieStr.append(cookieName);
+    cookieStr.append("\t");
     cookieStr.append(cookieValue);
 
     return cookieStr.toString();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to