Title: [208937] trunk/Source/_javascript_Core
- Revision
- 208937
- Author
- [email protected]
- Date
- 2016-11-20 17:34:20 -0800 (Sun, 20 Nov 2016)
Log 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):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (208936 => 208937)
--- trunk/Source/_javascript_Core/ChangeLog 2016-11-21 01:33:09 UTC (rev 208936)
+++ trunk/Source/_javascript_Core/ChangeLog 2016-11-21 01:34:20 UTC (rev 208937)
@@ -1,5 +1,15 @@
2016-11-20 Mark Lam <[email protected]>
+ 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):
+
+2016-11-20 Mark Lam <[email protected]>
+
Fix exception scope verification failures in CommonSlowPaths.cpp/h.
https://bugs.webkit.org/show_bug.cgi?id=164975
Modified: trunk/Source/_javascript_Core/runtime/ConstructData.cpp (208936 => 208937)
--- trunk/Source/_javascript_Core/runtime/ConstructData.cpp 2016-11-21 01:33:09 UTC (rev 208936)
+++ trunk/Source/_javascript_Core/runtime/ConstructData.cpp 2016-11-21 01:34:20 UTC (rev 208937)
@@ -44,6 +44,7 @@
if (constructType == ConstructType::None)
return throwTypeError(exec, scope, errorMessage);
+ scope.release();
return construct(exec, constructorObject, constructType, constructData, args, constructorObject);
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes