Changeset 83809 in webkit for trunk/Source/JavaScriptCore/runtime/StructureTransitionTable.h
- Timestamp:
- Apr 13, 2011, 8:57:40 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/StructureTransitionTable.h
r83808 r83809 134 134 { 135 135 ASSERT(isUsingSingleSlot()); 136 if (HandleSlot slot = this->slot()) 137 return reinterpret_cast<Structure*>(slot->asCell()); 136 if (HandleSlot slot = this->slot()) { 137 if (*slot) 138 return reinterpret_cast<Structure*>(slot->asCell()); 139 } 138 140 return 0; 139 141 }
Note:
See TracChangeset
for help on using the changeset viewer.