Changeset 2747 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Nov 18, 2002, 9:07:29 PM (23 years ago)
Author:
mjs
Message:

Fixed a horrible leak introduced with my last change that
somehow did not show up on my machine.

  • kjs/types.cpp: (List::List): Mark ListImp as GC allowed.
Location:
trunk/JavaScriptCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r2744 r2747  
     12002-11-18  Maciej Stachowiak  <[email protected]>
     2
     3        Fixed a horrible leak introduced with my last change that
     4        somehow did not show up on my machine.
     5
     6        * kjs/types.cpp:
     7        (List::List): Mark ListImp as GC allowed.
     8
    192002-11-18  Maciej Stachowiak  <[email protected]>
    210
  • trunk/JavaScriptCore/ChangeLog-2002-12-03

    r2744 r2747  
     12002-11-18  Maciej Stachowiak  <[email protected]>
     2
     3        Fixed a horrible leak introduced with my last change that
     4        somehow did not show up on my machine.
     5
     6        * kjs/types.cpp:
     7        (List::List): Mark ListImp as GC allowed.
     8
    192002-11-18  Maciej Stachowiak  <[email protected]>
    210
  • trunk/JavaScriptCore/ChangeLog-2003-10-25

    r2744 r2747  
     12002-11-18  Maciej Stachowiak  <[email protected]>
     2
     3        Fixed a horrible leak introduced with my last change that
     4        somehow did not show up on my machine.
     5
     6        * kjs/types.cpp:
     7        (List::List): Mark ListImp as GC allowed.
     8
    192002-11-18  Maciej Stachowiak  <[email protected]>
    210
  • trunk/JavaScriptCore/kjs/types.cpp

    r2744 r2747  
    173173{
    174174  imp = m_needsMarking ? ListImp::empty() : new ListImp();
     175  imp->setGcAllowed();
    175176   
    176177  if (!m_needsMarking) {
     
    194195{
    195196  imp = p_imp;
     197  imp->setGcAllowed();
    196198
    197199  if (!m_needsMarking) {
Note: See TracChangeset for help on using the changeset viewer.