Changeset 227906 in webkit for trunk/Source/JavaScriptCore/runtime/JSArray.cpp
- Timestamp:
- Jan 31, 2018, 10:57:13 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSArray.cpp
r227617 r227906 803 803 804 804 DisallowGC disallowGC; 805 auto locker = holdLock( *this);805 auto locker = holdLock(cellLock()); 806 806 807 807 if (startIndex + count > vectorLength) … … 1006 1006 // a weird state: some parts of it will be left uninitialized, which we will fill in here. 1007 1007 DeferGC deferGC(vm.heap); 1008 auto locker = holdLock( *this);1008 auto locker = holdLock(cellLock()); 1009 1009 1010 1010 if (moveFront && storage->m_indexBias >= count) {
Note:
See TracChangeset
for help on using the changeset viewer.