Changeset 910 in webkit for trunk/JavaScriptCore
- Timestamp:
- Mar 30, 2002, 10:48:51 PM (23 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r903 r910 1 2002-03-30 Maciej Stachowiak <[email protected]> 2 3 Fixed Radar 2891272 (JavaScript crashes loading quicktime.com and 4 apple.com) 5 6 * kjs/object.cpp: (ObjectImp::~ObjectImp): Don't call setGCAlloc 7 on object internals pointed to, because they may have already been 8 collected by the time this object is collected, and in that case 9 we would corrupt the malloc arena. 10 11 * Makefile.am: Make the stamp file depend on all the sources and 12 headers so the framework gets rebuilt properly. 13 14 * JavaScriptCore.pbproj/project.pbxproj: Some random numbers moved 15 around. No idea what I really changed. 16 1 17 2002-03-30 Darin Adler <[email protected]> 2 18 -
trunk/JavaScriptCore/ChangeLog-2002-12-03
r903 r910 1 2002-03-30 Maciej Stachowiak <[email protected]> 2 3 Fixed Radar 2891272 (JavaScript crashes loading quicktime.com and 4 apple.com) 5 6 * kjs/object.cpp: (ObjectImp::~ObjectImp): Don't call setGCAlloc 7 on object internals pointed to, because they may have already been 8 collected by the time this object is collected, and in that case 9 we would corrupt the malloc arena. 10 11 * Makefile.am: Make the stamp file depend on all the sources and 12 headers so the framework gets rebuilt properly. 13 14 * JavaScriptCore.pbproj/project.pbxproj: Some random numbers moved 15 around. No idea what I really changed. 16 1 17 2002-03-30 Darin Adler <[email protected]> 2 18 -
trunk/JavaScriptCore/ChangeLog-2003-10-25
r903 r910 1 2002-03-30 Maciej Stachowiak <[email protected]> 2 3 Fixed Radar 2891272 (JavaScript crashes loading quicktime.com and 4 apple.com) 5 6 * kjs/object.cpp: (ObjectImp::~ObjectImp): Don't call setGCAlloc 7 on object internals pointed to, because they may have already been 8 collected by the time this object is collected, and in that case 9 we would corrupt the malloc arena. 10 11 * Makefile.am: Make the stamp file depend on all the sources and 12 headers so the framework gets rebuilt properly. 13 14 * JavaScriptCore.pbproj/project.pbxproj: Some random numbers moved 15 around. No idea what I really changed. 16 1 17 2002-03-30 Darin Adler <[email protected]> 2 18 -
trunk/JavaScriptCore/JavaScriptCore.pbproj/project.pbxproj
r902 r910 82 82 0867D69AFE84028FC02AAC07, 83 83 034768DFFF38A50411DB9C8B, 84 F692A8C802555BA201FF60F7,85 F692A8C902555BA201FF60F7,86 F692A8CA02555BA201FF60F7,87 84 ); 88 85 isa = PBXGroup; … … 322 319 F692A85E0255597D01FF60F7, 323 320 F692A85F0255597D01FF60F7, 321 F692A8C802555BA201FF60F7, 322 F692A8C902555BA201FF60F7, 323 F692A8CA02555BA201FF60F7, 324 324 F692A8610255597D01FF60F7, 325 325 F692A8620255597D01FF60F7, -
trunk/JavaScriptCore/Makefile.am
r901 r910 13 13 CLEANFILES = $(BUILT_SOURCES) 14 14 15 JavaScriptCore-stamp: 15 JavaScriptCore-stamp: kjs/*.cpp kjs/*.h 16 16 pbxbuild -buildstyle $(BUILDSTYLE) 17 17 touch JavaScriptCore-stamp -
trunk/JavaScriptCore/kjs/object.cpp
r798 r910 202 202 { 203 203 //fprintf(stderr,"ObjectImp::~ObjectImp %p\n",(void*)this); 204 #if 0 // Those could be already deleted. The collector ensures no order 205 // ### Check if this leads to memory leaks.... 204 206 if (_proto) 205 207 _proto->setGcAllowed(); … … 208 210 if (_scope) 209 211 _scope->setGcAllowed(); 212 #endif 210 213 delete _prop; 211 214 }
Note:
See TracChangeset
for help on using the changeset viewer.