Changeset 2874 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 25, 2002, 11:51:13 PM (23 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r2871 r2874 1 2002-11-25 Richard Williamson <[email protected]> 2 3 Use delete[] (not delete) operator to delete array. 4 5 * kjs/property_map.cpp: 6 1 7 2002-11-25 Richard Williamson <[email protected]> 2 8 -
trunk/JavaScriptCore/ChangeLog-2002-12-03
r2871 r2874 1 2002-11-25 Richard Williamson <[email protected]> 2 3 Use delete[] (not delete) operator to delete array. 4 5 * kjs/property_map.cpp: 6 1 7 2002-11-25 Richard Williamson <[email protected]> 2 8 -
trunk/JavaScriptCore/ChangeLog-2003-10-25
r2871 r2874 1 2002-11-25 Richard Williamson <[email protected]> 2 3 Use delete[] (not delete) operator to delete array. 4 5 * kjs/property_map.cpp: 6 1 7 2002-11-25 Richard Williamson <[email protected]> 2 8 -
trunk/JavaScriptCore/kjs/property_map.cpp
r2871 r2874 73 73 SavedProperties::~SavedProperties() 74 74 { 75 if (_properties) 76 delete _properties; 75 if (_properties){ 76 delete [] _properties; 77 } 77 78 } 78 79
Note:
See TracChangeset
for help on using the changeset viewer.