Ignore:
Timestamp:
Apr 13, 2011, 8:57:40 PM (14 years ago)
Author:
[email protected]
Message:

Fix 32bit tests.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/StructureTransitionTable.h

    r83808 r83809  
    134134    {
    135135        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        }
    138140        return 0;
    139141    }
Note: See TracChangeset for help on using the changeset viewer.