Changeset 160430 in webkit


Ignore:
Timestamp:
Dec 11, 2013 7:34:59 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

[CURL] Build fails after r160386.
https://bugs.webkit.org/show_bug.cgi?id=125571

Patch by Tamas Gergely <tgergely.u-szeged@partner.samsung.com> 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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r160429 r160430  
     12013-12-11  Tamas Gergely  <tgergely.u-szeged@partner.samsung.com>
     2
     3        [CURL] Build fails after r160386.
     4        https://bugs.webkit.org/show_bug.cgi?id=125571
     5
     6        Reviewed by Zoltan Herczeg.
     7
     8        Need no new tests.
     9
     10        Fix a typo in commit r160386 that prevents building with curl.
     11
     12        * platform/network/curl/CurlCacheEntry.cpp:
     13        (WebCore::CurlCacheEntry::generateBaseFilename):
     14
    1152013-12-11  Rob Buis  <rob.buis@samsung.com>
    216
  • trunk/Source/WebCore/platform/network/curl/CurlCacheEntry.cpp

    r160386 r160430  
    211211    uint8_t* rawdata = sum.data();
    212212
    213     for (size_t i = 0; i < MD5::hasSize; i++)
     213    for (size_t i = 0; i < MD5::hashSize; i++)
    214214        appendByteAsHex(rawdata[i], m_basename, Lowercase);
    215215}
Note: See TracChangeset for help on using the changeset viewer.