Title: [206836] trunk/Source/_javascript_Core
Revision
206836
Author
[email protected]
Date
2016-10-05 16:47:34 -0700 (Wed, 05 Oct 2016)

Log Message

Bad ASSERT in ClonedArguments::createByCopyingFrom()
https://bugs.webkit.org/show_bug.cgi?id=162988

Reviewed by Keith Miller.

Removed bogus assert.

* runtime/ClonedArguments.cpp:
(JSC::ClonedArguments::createByCopyingFrom):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (206835 => 206836)


--- trunk/Source/_javascript_Core/ChangeLog	2016-10-05 23:19:53 UTC (rev 206835)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-10-05 23:47:34 UTC (rev 206836)
@@ -1,3 +1,15 @@
+2016-10-05  Michael Saboff  <[email protected]>
+
+        Bad ASSERT in ClonedArguments::createByCopyingFrom()
+        https://bugs.webkit.org/show_bug.cgi?id=162988
+
+        Reviewed by Keith Miller.
+
+        Removed bogus assert.
+
+        * runtime/ClonedArguments.cpp:
+        (JSC::ClonedArguments::createByCopyingFrom):
+
 2016-10-05  Zan Dobersek  <[email protected]>
 
         Rename ENABLE_ENCRYPTED_MEDIA_V2 to ENABLE_LEGACY_ENCRYPTED_MEDIA

Modified: trunk/Source/_javascript_Core/runtime/ClonedArguments.cpp (206835 => 206836)


--- trunk/Source/_javascript_Core/runtime/ClonedArguments.cpp	2016-10-05 23:19:53 UTC (rev 206835)
+++ trunk/Source/_javascript_Core/runtime/ClonedArguments.cpp	2016-10-05 23:47:34 UTC (rev 206836)
@@ -135,7 +135,6 @@
     for (unsigned i = length; i--;)
         result->initializeIndex(vm, i, argumentStart[i].jsValue());
 
-    ASSERT(exec->lexicalGlobalObject()->clonedArgumentsStructure() == result->structure());
     return result;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to