Changeset 10061 in webkit for trunk/JavaScriptCore/kjs/object.cpp
- Timestamp:
- Aug 5, 2005, 6:16:25 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.cpp
r9889 r10061 327 327 return true; 328 328 329 if ( _proto->dispatchType() != ObjectType) {329 if (!_proto || _proto->dispatchType() != ObjectType) { 330 330 return false; 331 331 } … … 340 340 return true; 341 341 342 if ( _proto->dispatchType() != ObjectType) {342 if (!_proto || _proto->dispatchType() != ObjectType) { 343 343 return false; 344 344 }
Note:
See TracChangeset
for help on using the changeset viewer.