Changeset 34664 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jun 19, 2008, 2:13:41 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r34661 r34664 1 2008-06-19 Alexey Proskuryakov <[email protected]> 2 3 Reviewed by Sam. 4 5 Fix an assertion failure at startup. 6 7 * kjs/JSObject.h: (KJS::JSObject::JSObject): Allow jsNull prototype in an assertion (I had 8 it fixed in a wrong copy of the file, so I wasn't getting the failure). 9 1 10 2008-06-19 Alexey Proskuryakov <[email protected]> 2 11 -
trunk/JavaScriptCore/kjs/JSObject.h
r34659 r34664 487 487 { 488 488 ASSERT(proto); 489 ASSERT( Heap::heap(this) == Heap::heap(proto));489 ASSERT(proto == jsNull() || Heap::heap(this) == Heap::heap(proto)); 490 490 } 491 491
Note:
See TracChangeset
for help on using the changeset viewer.