Changeset 247166 in webkit


Ignore:
Timestamp:
Jul 5, 2019 11:57:55 AM (5 years ago)
Author:
Tadeu Zagallo
Message:

Unreviewed, change the value used to scribble Heap::m_worldState
https://bugs.webkit.org/show_bug.cgi?id=199498

Follow-up after r247160. The value used to scribble should have the
conn bit set.

  • heap/Heap.cpp:

(JSC::Heap::~Heap):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r247164 r247166  
     12019-07-05  Tadeu Zagallo  <tzagallo@apple.com>
     2
     3        Unreviewed, change the value used to scribble Heap::m_worldState
     4        https://bugs.webkit.org/show_bug.cgi?id=199498
     5
     6        Follow-up after r247160. The value used to scribble should have the
     7        conn bit set.
     8
     9        * heap/Heap.cpp:
     10        (JSC::Heap::~Heap):
     11
    1122019-07-05  Ryan Haddad  <ryanhaddad@apple.com>
    213
  • trunk/Source/JavaScriptCore/heap/Heap.cpp

    r247160 r247166  
    341341{
    342342    // Scribble m_worldState to make it clear that the heap has already been destroyed if we crash in checkConn
    343     m_worldState.store(0xbadbeef0u);
     343    m_worldState.store(0xbadbeeffu);
    344344
    345345    forEachSlotVisitor(
Note: See TracChangeset for help on using the changeset viewer.