Changeset 236123 in webkit
- Timestamp:
- Sep 18, 2018, 6:32:18 AM (8 years ago)
- Location:
- releases/WebKitGTK/webkit-2.22
- Files:
-
- 1 added
- 3 edited
-
JSTests/ChangeLog (modified) (1 diff)
-
JSTests/stress/regress-189186.js (added)
-
Source/JavaScriptCore/ChangeLog (modified) (1 diff)
-
Source/JavaScriptCore/runtime/JSDataView.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
releases/WebKitGTK/webkit-2.22/JSTests/ChangeLog
r236122 r236123 1 2018-08-31 Mark Lam <mark.lam@apple.com> 2 3 Fix exception check accounting in JSDataView::defineOwnProperty(). 4 https://bugs.webkit.org/show_bug.cgi?id=189186 5 <rdar://problem/39786049> 6 7 Reviewed by Michael Saboff. 8 9 * stress/regress-189186.js: Added. 10 1 11 2018-08-31 Mark Lam <mark.lam@apple.com> 2 12 -
releases/WebKitGTK/webkit-2.22/Source/JavaScriptCore/ChangeLog
r236122 r236123 1 2018-08-31 Mark Lam <mark.lam@apple.com> 2 3 Fix exception check accounting in JSDataView::defineOwnProperty(). 4 https://bugs.webkit.org/show_bug.cgi?id=189186 5 <rdar://problem/39786049> 6 7 Reviewed by Michael Saboff. 8 9 * runtime/JSDataView.cpp: 10 (JSC::JSDataView::defineOwnProperty): 11 1 12 2018-08-31 Mark Lam <mark.lam@apple.com> 2 13 -
releases/WebKitGTK/webkit-2.22/Source/JavaScriptCore/runtime/JSDataView.cpp
r233721 r236123 152 152 return typeError(exec, scope, shouldThrow, "Attempting to define read-only typed array property."_s); 153 153 154 scope.release(); 154 155 return Base::defineOwnProperty(thisObject, exec, propertyName, descriptor, shouldThrow); 155 156 }
Note:
See TracChangeset
for help on using the changeset viewer.