⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 236123 in webkit


Ignore:
Timestamp:
Sep 18, 2018, 6:32:18 AM (8 years ago)
Author:
Carlos Garcia Campos
Message:

Merge r235554 - Fix exception check accounting in JSDataView::defineOwnProperty().
https://bugs.webkit.org/show_bug.cgi?id=189186
<rdar://problem/39786049>

Reviewed by Michael Saboff.

JSTests:

  • stress/regress-189186.js: Added.

Source/JavaScriptCore:

  • runtime/JSDataView.cpp:

(JSC::JSDataView::defineOwnProperty):

Location:
releases/WebKitGTK/webkit-2.22
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-2.22/JSTests/ChangeLog

    r236122 r236123  
     12018-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
    1112018-08-31  Mark Lam  <mark.lam@apple.com>
    212
  • releases/WebKitGTK/webkit-2.22/Source/JavaScriptCore/ChangeLog

    r236122 r236123  
     12018-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
    1122018-08-31  Mark Lam  <mark.lam@apple.com>
    213
  • releases/WebKitGTK/webkit-2.22/Source/JavaScriptCore/runtime/JSDataView.cpp

    r233721 r236123  
    152152        return typeError(exec, scope, shouldThrow, "Attempting to define read-only typed array property."_s);
    153153
     154    scope.release();
    154155    return Base::defineOwnProperty(thisObject, exec, propertyName, descriptor, shouldThrow);
    155156}
Note: See TracChangeset for help on using the changeset viewer.