Changeset 36310 in webkit for trunk/JavaScriptCore/kjs/JSObject.cpp
- Timestamp:
- Sep 9, 2008, 7:36:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSObject.cpp
r36304 r36310 71 71 m_structureID->mark(); 72 72 73 unsigned storageSize = m_structureID->propertyMap().ma kingCount();73 unsigned storageSize = m_structureID->propertyMap().markingCount(); 74 74 if (storageSize) { 75 for (unsigned i = 1; i <=storageSize; ++i) {75 for (unsigned i = 0; i < storageSize; ++i) { 76 76 JSValue* v = m_propertyStorage[i]; 77 77 if (!v->marked())
Note:
See TracChangeset
for help on using the changeset viewer.