Changeset 2747 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 18, 2002, 9:07:29 PM (23 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r2744 r2747 1 2002-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 1 9 2002-11-18 Maciej Stachowiak <[email protected]> 2 10 -
trunk/JavaScriptCore/ChangeLog-2002-12-03
r2744 r2747 1 2002-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 1 9 2002-11-18 Maciej Stachowiak <[email protected]> 2 10 -
trunk/JavaScriptCore/ChangeLog-2003-10-25
r2744 r2747 1 2002-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 1 9 2002-11-18 Maciej Stachowiak <[email protected]> 2 10 -
trunk/JavaScriptCore/kjs/types.cpp
r2744 r2747 173 173 { 174 174 imp = m_needsMarking ? ListImp::empty() : new ListImp(); 175 imp->setGcAllowed(); 175 176 176 177 if (!m_needsMarking) { … … 194 195 { 195 196 imp = p_imp; 197 imp->setGcAllowed(); 196 198 197 199 if (!m_needsMarking) {
Note:
See TracChangeset
for help on using the changeset viewer.