Title: [160430] trunk/Source/WebCore
- Revision
- 160430
- Author
- [email protected]
- Date
- 2013-12-11 07:34:59 -0800 (Wed, 11 Dec 2013)
Log Message
[CURL] Build fails after r160386.
https://bugs.webkit.org/show_bug.cgi?id=125571
Patch by Tamas Gergely <[email protected]> on 2013-12-11
Reviewed by Zoltan Herczeg.
Need no new tests.
Fix a typo in commit r160386 that prevents building with curl.
* platform/network/curl/CurlCacheEntry.cpp:
(WebCore::CurlCacheEntry::generateBaseFilename):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (160429 => 160430)
--- trunk/Source/WebCore/ChangeLog 2013-12-11 13:38:59 UTC (rev 160429)
+++ trunk/Source/WebCore/ChangeLog 2013-12-11 15:34:59 UTC (rev 160430)
@@ -1,3 +1,17 @@
+2013-12-11 Tamas Gergely <[email protected]>
+
+ [CURL] Build fails after r160386.
+ https://bugs.webkit.org/show_bug.cgi?id=125571
+
+ Reviewed by Zoltan Herczeg.
+
+ Need no new tests.
+
+ Fix a typo in commit r160386 that prevents building with curl.
+
+ * platform/network/curl/CurlCacheEntry.cpp:
+ (WebCore::CurlCacheEntry::generateBaseFilename):
+
2013-12-11 Rob Buis <[email protected]>
[CSS Shapes] Take into account fill-rule for polygon interpolation
Modified: trunk/Source/WebCore/platform/network/curl/CurlCacheEntry.cpp (160429 => 160430)
--- trunk/Source/WebCore/platform/network/curl/CurlCacheEntry.cpp 2013-12-11 13:38:59 UTC (rev 160429)
+++ trunk/Source/WebCore/platform/network/curl/CurlCacheEntry.cpp 2013-12-11 15:34:59 UTC (rev 160430)
@@ -210,7 +210,7 @@
md5.checksum(sum);
uint8_t* rawdata = sum.data();
- for (size_t i = 0; i < MD5::hasSize; i++)
+ for (size_t i = 0; i < MD5::hashSize; i++)
appendByteAsHex(rawdata[i], m_basename, Lowercase);
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes