Changeset 208937 in webkit


Ignore:
Timestamp:
Nov 20, 2016 5:34:20 PM (7 years ago)
Author:
mark.lam@apple.com
Message:

Fix exception scope verification failures in ConstructData.cpp.
https://bugs.webkit.org/show_bug.cgi?id=164976

Reviewed by Darin Adler.

  • runtime/ConstructData.cpp:

(JSC::construct):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r208936 r208937  
     12016-11-20  Mark Lam  <mark.lam@apple.com>
     2
     3        Fix exception scope verification failures in ConstructData.cpp.
     4        https://bugs.webkit.org/show_bug.cgi?id=164976
     5
     6        Reviewed by Darin Adler.
     7
     8        * runtime/ConstructData.cpp:
     9        (JSC::construct):
     10
    1112016-11-20  Mark Lam  <mark.lam@apple.com>
    212
  • trunk/Source/JavaScriptCore/runtime/ConstructData.cpp

    r208063 r208937  
    4545        return throwTypeError(exec, scope, errorMessage);
    4646
     47    scope.release();
    4748    return construct(exec, constructorObject, constructType, constructData, args, constructorObject);
    4849}
Note: See TracChangeset for help on using the changeset viewer.