Title: [208912] trunk/Source/_javascript_Core
Revision
208912
Author
[email protected]
Date
2016-11-18 17:40:14 -0800 (Fri, 18 Nov 2016)

Log Message

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

Reviewed by Saam Barati.

* interpreter/ShadowChicken.cpp:
(JSC::ShadowChicken::functionsOnStack):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (208911 => 208912)


--- trunk/Source/_javascript_Core/ChangeLog	2016-11-19 01:00:27 UTC (rev 208911)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-11-19 01:40:14 UTC (rev 208912)
@@ -1,3 +1,13 @@
+2016-11-18  Mark Lam  <[email protected]>
+
+        Fix exception scope verification failures in ShadowChicken.cpp.
+        https://bugs.webkit.org/show_bug.cgi?id=164966
+
+        Reviewed by Saam Barati.
+
+        * interpreter/ShadowChicken.cpp:
+        (JSC::ShadowChicken::functionsOnStack):
+
 2016-11-18  Jeremy Jones  <[email protected]>
 
         Add runtime flag to enable pointer lock. Enable pointer lock feature for mac.

Modified: trunk/Source/_javascript_Core/interpreter/ShadowChicken.cpp (208911 => 208912)


--- trunk/Source/_javascript_Core/interpreter/ShadowChicken.cpp	2016-11-19 01:00:27 UTC (rev 208911)
+++ trunk/Source/_javascript_Core/interpreter/ShadowChicken.cpp	2016-11-19 01:40:14 UTC (rev 208912)
@@ -444,6 +444,7 @@
         vm, exec,
         [&] (const Frame& frame) -> bool {
             result->push(exec, frame.callee);
+            RELEASE_ASSERT(!scope.exception()); // This function is only called from tests.
             return true;
         });
     
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to