Changeset 244634 in webkit
- Timestamp:
- Apr 24, 2019, 10:09:59 PM (7 years ago)
- Location:
- trunk/Source/bmalloc
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
bmalloc/IsoHeapImplInlines.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/bmalloc/ChangeLog
r244497 r244634 1 2019-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 1 9 2019-04-21 Yusuke Suzuki <ysuzuki@apple.com> 2 10 -
trunk/Source/bmalloc/bmalloc/IsoHeapImplInlines.h
r244481 r244634 285 285 BASSERT(indexPlusOne); 286 286 unsigned index = indexPlusOne - 1; 287 void* result = result =m_sharedCells[index];287 void* result = m_sharedCells[index]; 288 288 if (result) { 289 289 if (verbose)
Note:
See TracChangeset
for help on using the changeset viewer.