Changeset 108779 in webkit


Ignore:
Timestamp:
Feb 24, 2012 5:38:30 AM (12 years ago)
Author:
zherczeg@webkit.org
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):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r108753 r108779  
     12012-02-24  Zoltan Herczeg  <zherczeg@webkit.org>
     2
     3        [Qt] Buildfix for "Zero out CopiedBlocks on initialization".
     4        https://bugs.webkit.org/show_bug.cgi?id=79199
     5
     6        Ruber stamped by Csaba Osztrogonác.
     7
     8        Temporary fix since the new member wastes a little space on
     9        64 bit systems. Although it is harmless, it is only needed
     10        for 32 bit systems.
     11
     12        * heap/CopiedBlock.h:
     13        (CopiedBlock):
     14
    1152012-02-24  Han Hojong  <hojong.han@samsung.com>
    216
  • trunk/Source/JavaScriptCore/heap/CopiedBlock.h

    r108716 r108779  
    5959    uintptr_t m_isPinned;
    6060    uintptr_t m_padding;
     61    uintptr_t m_dummy;
    6162    char m_payload[1];
    6263};
Note: See TracChangeset for help on using the changeset viewer.