Changeset 153455 in webkit
- Timestamp:
- Jul 29, 2013, 8:33:57 PM (12 years ago)
- Location:
- trunk/Source/WTF
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r153440 r153455 1 2013-07-29 Mark Rowe <mrowe@apple.com> 2 3 <rdar://problem/14528244> Tons of FastMalloc leaks reported by leaks of objects that have already been deallocated 4 5 Reviewed by Sam Weinig. 6 7 * wtf/FastMalloc.cpp: 8 (WTF::TCMalloc_Central_FreeList::enumerateFreeObjects): Mark objects in the transfer cache as being free. 9 1 10 2013-07-29 Zan Dobersek <zdobersek@igalia.com> 2 11 -
trunk/Source/WTF/wtf/FastMalloc.cpp
r153189 r153455 1365 1365 } 1366 1366 } 1367 1368 for (int slot = 0; slot < used_slots_; ++slot) { 1369 for (HardenedSLL entry = tc_slots_[slot].head; entry; entry.setValue(reader.nextEntryInHardenedLinkedList(reinterpret_cast<void**>(entry.value()), entropy_))) 1370 finder.visit(entry.value()); 1371 } 1367 1372 } 1368 1373 #endif
Note:
See TracChangeset
for help on using the changeset viewer.