Changeset 1881 in webkit for trunk/JavaScriptCore
- Timestamp:
- Aug 20, 2002, 2:53:41 PM (23 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r1869 r1881 1 2002-08-20 Maciej Stachowiak <[email protected]> 2 3 * kjs/object.cpp: Don't reference other ValueImps in the 4 destructor, they may ha ve already been destroyed, and will have 5 GC_ALLOWED set already in any case. 6 w 1 7 2002-08-19 Maciej Stachowiak <[email protected]> 2 8 -
trunk/JavaScriptCore/ChangeLog-2002-12-03
r1869 r1881 1 2002-08-20 Maciej Stachowiak <[email protected]> 2 3 * kjs/object.cpp: Don't reference other ValueImps in the 4 destructor, they may ha ve already been destroyed, and will have 5 GC_ALLOWED set already in any case. 6 w 1 7 2002-08-19 Maciej Stachowiak <[email protected]> 2 8 -
trunk/JavaScriptCore/ChangeLog-2003-10-25
r1869 r1881 1 2002-08-20 Maciej Stachowiak <[email protected]> 2 3 * kjs/object.cpp: Don't reference other ValueImps in the 4 destructor, they may ha ve already been destroyed, and will have 5 GC_ALLOWED set already in any case. 6 w 1 7 2002-08-19 Maciej Stachowiak <[email protected]> 2 8 -
trunk/JavaScriptCore/kjs/object.cpp
r1861 r1881 80 80 { 81 81 //fprintf(stderr,"ObjectImp::~ObjectImp %p\n",(void*)this); 82 if (_proto)83 _proto->setGcAllowed();84 if (_internalValue)85 _internalValue->setGcAllowed();86 if (_scope)87 _scope->setGcAllowed();88 82 delete _prop; 89 83 }
Note:
See TracChangeset
for help on using the changeset viewer.