⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 176489 in webkit


Ignore:
Timestamp:
Nov 21, 2014, 5:09:21 PM (12 years ago)
Author:
Chris Dumez
Message:

Unreviewed, iOS build fix after r176452.

dencodeFixedLengthData() now only takes 2 arguments instead of
3.

  • Shared/ios/QuickLookDocumentData.cpp:

(WebKit::QuickLookDocumentData::decode):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r176488 r176489  
     12014-11-21  Chris Dumez  <cdumez@apple.com>
     2
     3        Unreviewed, iOS build fix after r176452.
     4
     5        dencodeFixedLengthData() now only takes 2 arguments instead of
     6        3.
     7
     8        * Shared/ios/QuickLookDocumentData.cpp:
     9        (WebKit::QuickLookDocumentData::decode):
     10
    1112014-11-21  Zalan Bujtas  <zalan@apple.com>
    212
  • trunk/Source/WebKit2/Shared/ios/QuickLookDocumentData.cpp

    r176457 r176489  
    7575    ASSERT(buffer);
    7676
    77     if (!decoder.decodeFixedLengthData(buffer, size, 1)) {
     77    if (!decoder.decodeFixedLengthData(buffer, size)) {
    7878        CFAllocatorDeallocate(kCFAllocatorDefault, buffer);
    7979        return false;
Note: See TracChangeset for help on using the changeset viewer.