⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 244634 in webkit


Ignore:
Timestamp:
Apr 24, 2019, 10:09:59 PM (7 years ago)
Author:
ysuzuki@apple.com
Message:

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

  • bmalloc/IsoHeapImplInlines.h:

(bmalloc::IsoHeapImpl<Config>::allocateFromShared):

Location:
trunk/Source/bmalloc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/bmalloc/ChangeLog

    r244497 r244634  
     12019-04-24  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        Unreviewed, fix typo in r244481
     4        https://bugs.webkit.org/show_bug.cgi?id=196837
     5
     6        * bmalloc/IsoHeapImplInlines.h:
     7        (bmalloc::IsoHeapImpl<Config>::allocateFromShared):
     8
    192019-04-21  Yusuke Suzuki  <ysuzuki@apple.com>
    210
  • trunk/Source/bmalloc/bmalloc/IsoHeapImplInlines.h

    r244481 r244634  
    285285    BASSERT(indexPlusOne);
    286286    unsigned index = indexPlusOne - 1;
    287     void* result = result = m_sharedCells[index];
     287    void* result = m_sharedCells[index];
    288288    if (result) {
    289289        if (verbose)
Note: See TracChangeset for help on using the changeset viewer.