Ignore:
Timestamp:
Nov 28, 2016, 2:21:29 PM (9 years ago)
Author:
[email protected]
Message:

Fix exception scope verification failures in miscellaneous files.
https://bugs.webkit.org/show_bug.cgi?id=165055

Reviewed by Saam Barati.

  • runtime/MathObject.cpp:

(JSC::mathProtoFuncIMul):

  • runtime/ModuleLoaderPrototype.cpp:

(JSC::moduleLoaderPrototypeParseModule):
(JSC::moduleLoaderPrototypeRequestedModules):

  • runtime/NativeErrorConstructor.cpp:

(JSC::Interpreter::constructWithNativeErrorConstructor):

  • runtime/NumberConstructor.cpp:

(JSC::constructWithNumberConstructor):

  • runtime/SetConstructor.cpp:

(JSC::constructSet):

  • runtime/SetIteratorPrototype.cpp:

(JSC::SetIteratorPrototypeFuncNext):

  • runtime/SparseArrayValueMap.cpp:

(JSC::SparseArrayValueMap::putEntry):
(JSC::SparseArrayEntry::put):

  • runtime/TemplateRegistry.cpp:

(JSC::TemplateRegistry::getTemplateObject):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/MathObject.cpp

    r208209 r209018  
    298298    int32_t left = exec->argument(0).toInt32(exec);
    299299    RETURN_IF_EXCEPTION(scope, encodedJSValue());
     300    scope.release();
    300301    int32_t right = exec->argument(1).toInt32(exec);
    301302    return JSValue::encode(jsNumber(left * right));
Note: See TracChangeset for help on using the changeset viewer.