Changeset 242999 in webkit


Ignore:
Timestamp:
Mar 15, 2019 10:14:13 AM (5 years ago)
Author:
mark.lam@apple.com
Message:

Gardening: add a missing exception check after r242991.
https://bugs.webkit.org/show_bug.cgi?id=195791

Unreviewed.

  • tools/JSDollarVM.cpp:

(JSC::functionGetGetterSetter):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r242992 r242999  
     12019-03-15  Mark Lam  <mark.lam@apple.com>
     2
     3        Gardening: add a missing exception check after r242991.
     4        https://bugs.webkit.org/show_bug.cgi?id=195791
     5
     6        Unreviewed.
     7
     8        * tools/JSDollarVM.cpp:
     9        (JSC::functionGetGetterSetter):
     10
    1112019-03-15  Devin Rousso  <drousso@apple.com>
    212
  • trunk/Source/JavaScriptCore/tools/JSDollarVM.cpp

    r242991 r242999  
    21202120    PropertySlot slot(value, PropertySlot::InternalMethodType::VMInquiry);
    21212121    value.getPropertySlot(exec, propertyName, slot);
     2122    RETURN_IF_EXCEPTION(scope, { });
    21222123
    21232124    JSValue result;
Note: See TracChangeset for help on using the changeset viewer.