Changeset 209034 in webkit
- Timestamp:
- Nov 28, 2016, 3:40:53 PM (8 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r209032 r209034 1 2016-11-28 Mark Lam <mark.lam@apple.com> 2 3 Fix exception scope verification failures in JSDataView.cpp. 4 https://bugs.webkit.org/show_bug.cgi?id=165020 5 6 Reviewed by Saam Barati. 7 8 * runtime/JSDataView.cpp: 9 (JSC::JSDataView::put): 10 1 11 2016-11-28 Mark Lam <mark.lam@apple.com> 2 12 -
trunk/Source/JavaScriptCore/runtime/JSDataView.cpp
r208209 r209034 127 127 JSDataView* thisObject = jsCast<JSDataView*>(cell); 128 128 129 if (UNLIKELY(isThisValueAltered(slot, thisObject))) 129 if (UNLIKELY(isThisValueAltered(slot, thisObject))) { 130 scope.release(); 130 131 return ordinarySetSlow(exec, thisObject, propertyName, value, slot.thisValue(), slot.isStrictMode()); 132 } 131 133 132 134 if (propertyName == vm.propertyNames->byteLength … … 134 136 return typeError(exec, scope, slot.isStrictMode(), ASCIILiteral("Attempting to write to read-only typed array property.")); 135 137 138 scope.release(); 136 139 return Base::put(thisObject, exec, propertyName, value, slot); 137 140 }
Note:
See TracChangeset
for help on using the changeset viewer.