Title: [250724] trunk/Source/_javascript_Core
Revision
250724
Author
tsav...@apple.com
Date
2019-10-04 08:34:06 -0700 (Fri, 04 Oct 2019)

Log Message

Unreviewed, rolling out r250594.

Broke multiple internal API tests

Reverted changeset:

"Unreviewed, fix incorrect assertion"
https://bugs.webkit.org/show_bug.cgi?id=202391
https://trac.webkit.org/changeset/250594

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (250723 => 250724)


--- trunk/Source/_javascript_Core/ChangeLog	2019-10-04 15:33:32 UTC (rev 250723)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-10-04 15:34:06 UTC (rev 250724)
@@ -1,3 +1,15 @@
+2019-10-04  Truitt Savell  <tsav...@apple.com>
+
+        Unreviewed, rolling out r250594.
+
+        Broke multiple internal API tests
+
+        Reverted changeset:
+
+        "Unreviewed, fix incorrect assertion"
+        https://bugs.webkit.org/show_bug.cgi?id=202391
+        https://trac.webkit.org/changeset/250594
+
 2019-10-04  Alex Christensen  <achristen...@webkit.org>
 
         Simplify sandbox enabling macros

Modified: trunk/Source/_javascript_Core/runtime/JSLock.cpp (250723 => 250724)


--- trunk/Source/_javascript_Core/runtime/JSLock.cpp	2019-10-04 15:33:32 UTC (rev 250723)
+++ trunk/Source/_javascript_Core/runtime/JSLock.cpp	2019-10-04 15:34:06 UTC (rev 250724)
@@ -310,7 +310,7 @@
         return;
     m_vm->apiLock().grabAllLocks(this, m_droppedLockCount);
     VM* previousVMInTLS = VM::exchange(m_vm.get());
-    ASSERT_UNUSED(previousVMInTLS, !previousVMInTLS);
+    ASSERT_UNUSED(previousVMInTLS, previousVMInTLS);
 }
 
 } // namespace JSC
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to