Changeset 11684 in webkit for trunk/JavaScriptCore/kjs/property_map.cpp
- Timestamp:
- Dec 20, 2005, 12:12:50 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/property_map.cpp
r11527 r11684 615 615 UString::Rep *key = _singleEntry.key; 616 616 if (key) { 617 UString k( key);617 UString k(pass(key)); 618 618 bool fitsInUInt32; 619 619 k.toUInt32(&fitsInUInt32); 620 620 if (fitsInUInt32) 621 list.append(Reference(base, Identifier( key)));621 list.append(Reference(base, Identifier(pass(key)))); 622 622 } 623 623 #endif … … 630 630 UString::Rep *key = entries[i].key; 631 631 if (key && key != &UString::Rep::null) { 632 UString k( key);632 UString k(pass(key)); 633 633 bool fitsInUInt32; 634 634 k.toUInt32(&fitsInUInt32); 635 635 if (fitsInUInt32) 636 list.append(Reference(base, Identifier( key)));636 list.append(Reference(base, Identifier(pass(key)))); 637 637 } 638 638 }
Note:
See TracChangeset
for help on using the changeset viewer.