Title: [108779] trunk/Source/_javascript_Core
Revision
108779
Author
zherc...@webkit.org
Date
2012-02-24 05:38:30 -0800 (Fri, 24 Feb 2012)

Log Message

[Qt] Buildfix for "Zero out CopiedBlocks on initialization".
https://bugs.webkit.org/show_bug.cgi?id=79199

Ruber stamped by Csaba Osztrogonác.

Temporary fix since the new member wastes a little space on
64 bit systems. Although it is harmless, it is only needed
for 32 bit systems.

* heap/CopiedBlock.h:
(CopiedBlock):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (108778 => 108779)


--- trunk/Source/_javascript_Core/ChangeLog	2012-02-24 13:33:20 UTC (rev 108778)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-02-24 13:38:30 UTC (rev 108779)
@@ -1,3 +1,17 @@
+2012-02-24  Zoltan Herczeg  <zherc...@webkit.org>
+
+        [Qt] Buildfix for "Zero out CopiedBlocks on initialization".
+        https://bugs.webkit.org/show_bug.cgi?id=79199
+
+        Ruber stamped by Csaba Osztrogonác.
+
+        Temporary fix since the new member wastes a little space on
+        64 bit systems. Although it is harmless, it is only needed
+        for 32 bit systems.
+
+        * heap/CopiedBlock.h:
+        (CopiedBlock):
+
 2012-02-24  Han Hojong  <hojong....@samsung.com>
 
         Remove useless jump instructions for short circuit

Modified: trunk/Source/_javascript_Core/heap/CopiedBlock.h (108778 => 108779)


--- trunk/Source/_javascript_Core/heap/CopiedBlock.h	2012-02-24 13:33:20 UTC (rev 108778)
+++ trunk/Source/_javascript_Core/heap/CopiedBlock.h	2012-02-24 13:38:30 UTC (rev 108779)
@@ -58,6 +58,7 @@
     void* m_offset;
     uintptr_t m_isPinned;
     uintptr_t m_padding;
+    uintptr_t m_dummy;
     char m_payload[1];
 };
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to