⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 90194 in webkit


Ignore:
Timestamp:
Jun 30, 2011, 7:42:18 PM (15 years ago)
Author:
oliver@apple.com
Message:

2011-06-30 Oliver Hunt <oliver@apple.com>

Reviewed by Beth Dakin.

Make GC validation clear cell structure on destruction
https://bugs.webkit.org/show_bug.cgi?id=63778

  • runtime/JSCell.h: (JSC::JSCell::JSCell::~JSCell):
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r90193 r90194  
     12011-06-30  Oliver Hunt  <oliver@apple.com>
     2
     3        Reviewed by Beth Dakin.
     4
     5        Make GC validation clear cell structure on destruction
     6        https://bugs.webkit.org/show_bug.cgi?id=63778
     7
     8        * runtime/JSCell.h:
     9        (JSC::JSCell::JSCell::~JSCell):
     10
    1112011-06-30  Geoffrey Garen  <ggaren@apple.com>
    212
  • trunk/Source/JavaScriptCore/runtime/JSCell.h

    r89069 r90194  
    187187    inline JSCell::~JSCell()
    188188    {
     189#if ENABLE(GC_VALIDATION)
     190        m_structure.clear();
     191#endif
    189192    }
    190193
Note: See TracChangeset for help on using the changeset viewer.