Title: [176457] trunk/Source/WebKit2
Revision
176457
Author
an...@apple.com
Date
2014-11-21 11:46:53 -0800 (Fri, 21 Nov 2014)

Log Message

Fix iOS build.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (176456 => 176457)


--- trunk/Source/WebKit2/ChangeLog	2014-11-21 19:32:10 UTC (rev 176456)
+++ trunk/Source/WebKit2/ChangeLog	2014-11-21 19:46:53 UTC (rev 176457)
@@ -1,5 +1,12 @@
 2014-11-21  Antti Koivisto  <an...@apple.com>
 
+        Fix iOS build.
+
+        * Shared/ios/QuickLookDocumentData.cpp:
+        (WebKit::QuickLookDocumentData::encode):
+
+2014-11-21  Antti Koivisto  <an...@apple.com>
+
         Remove alignment code from IPC coders
         https://bugs.webkit.org/show_bug.cgi?id=138963
 

Modified: trunk/Source/WebKit2/Shared/ios/QuickLookDocumentData.cpp (176456 => 176457)


--- trunk/Source/WebKit2/Shared/ios/QuickLookDocumentData.cpp	2014-11-21 19:32:10 UTC (rev 176456)
+++ trunk/Source/WebKit2/Shared/ios/QuickLookDocumentData.cpp	2014-11-21 19:46:53 UTC (rev 176457)
@@ -59,7 +59,7 @@
     encoder << size;
 
     for (const auto& data : m_data)
-        encoder.encodeFixedLengthData(CFDataGetBytePtr(data.get()), CFDataGetLength(data.get()), 1);
+        encoder.encodeFixedLengthData(CFDataGetBytePtr(data.get()), CFDataGetLength(data.get()));
 }
 
 bool QuickLookDocumentData::decode(IPC::ArgumentDecoder& decoder, QuickLookDocumentData& documentData)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to