Title: [176489] trunk/Source/WebKit2
Revision
176489
Author
cdu...@apple.com
Date
2014-11-21 17:09:21 -0800 (Fri, 21 Nov 2014)

Log Message

Unreviewed, iOS build fix after r176452.

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

* Shared/ios/QuickLookDocumentData.cpp:
(WebKit::QuickLookDocumentData::decode):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (176488 => 176489)


--- trunk/Source/WebKit2/ChangeLog	2014-11-22 00:59:27 UTC (rev 176488)
+++ trunk/Source/WebKit2/ChangeLog	2014-11-22 01:09:21 UTC (rev 176489)
@@ -1,3 +1,13 @@
+2014-11-21  Chris Dumez  <cdu...@apple.com>
+
+        Unreviewed, iOS build fix after r176452.
+
+        dencodeFixedLengthData() now only takes 2 arguments instead of
+        3.
+
+        * Shared/ios/QuickLookDocumentData.cpp:
+        (WebKit::QuickLookDocumentData::decode):
+
 2014-11-21  Zalan Bujtas  <za...@apple.com>
 
         Simple line layout: Add "show simple line layout debug borders" setting to MiniBrowser.

Modified: trunk/Source/WebKit2/Shared/ios/QuickLookDocumentData.cpp (176488 => 176489)


--- trunk/Source/WebKit2/Shared/ios/QuickLookDocumentData.cpp	2014-11-22 00:59:27 UTC (rev 176488)
+++ trunk/Source/WebKit2/Shared/ios/QuickLookDocumentData.cpp	2014-11-22 01:09:21 UTC (rev 176489)
@@ -74,7 +74,7 @@
     uint8_t* const buffer = static_cast<uint8_t*>(CFAllocatorAllocate(kCFAllocatorDefault, size, 0));
     ASSERT(buffer);
 
-    if (!decoder.decodeFixedLengthData(buffer, size, 1)) {
+    if (!decoder.decodeFixedLengthData(buffer, size)) {
         CFAllocatorDeallocate(kCFAllocatorDefault, buffer);
         return false;
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to