Title: [244634] trunk/Source/bmalloc
Revision
244634
Author
[email protected]
Date
2019-04-24 22:09:59 -0700 (Wed, 24 Apr 2019)

Log Message

Unreviewed, fix typo in r244481
https://bugs.webkit.org/show_bug.cgi?id=196837

* bmalloc/IsoHeapImplInlines.h:
(bmalloc::IsoHeapImpl<Config>::allocateFromShared):

Modified Paths

Diff

Modified: trunk/Source/bmalloc/ChangeLog (244633 => 244634)


--- trunk/Source/bmalloc/ChangeLog	2019-04-25 02:17:50 UTC (rev 244633)
+++ trunk/Source/bmalloc/ChangeLog	2019-04-25 05:09:59 UTC (rev 244634)
@@ -1,3 +1,11 @@
+2019-04-24  Yusuke Suzuki  <[email protected]>
+
+        Unreviewed, fix typo in r244481
+        https://bugs.webkit.org/show_bug.cgi?id=196837
+
+        * bmalloc/IsoHeapImplInlines.h:
+        (bmalloc::IsoHeapImpl<Config>::allocateFromShared):
+
 2019-04-21  Yusuke Suzuki  <[email protected]>
 
         [bmalloc] Use StaticPerProcess' mutex as bmalloc::Heap does with PerProcess

Modified: trunk/Source/bmalloc/bmalloc/IsoHeapImplInlines.h (244633 => 244634)


--- trunk/Source/bmalloc/bmalloc/IsoHeapImplInlines.h	2019-04-25 02:17:50 UTC (rev 244633)
+++ trunk/Source/bmalloc/bmalloc/IsoHeapImplInlines.h	2019-04-25 05:09:59 UTC (rev 244634)
@@ -284,7 +284,7 @@
     unsigned indexPlusOne = __builtin_ffs(m_usableBits);
     BASSERT(indexPlusOne);
     unsigned index = indexPlusOne - 1;
-    void* result = result = m_sharedCells[index];
+    void* result = m_sharedCells[index];
     if (result) {
         if (verbose)
             fprintf(stderr, "%p: allocated %p from shared again of size %u\n", this, result, Config::objectSize);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to