From bd04a20e258098070c6671b04d9a03a7dfa56441 Mon Sep 17 00:00:00 2001 From: "dmikurube@chromium.org" Date: Fri, 7 Feb 2014 08:09:43 +0000 Subject: Fix MarkUnmarkedAllocations to mark only unmarked allocations. BUG=None TEST=None Review URL: https://codereview.chromium.org/153083005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@249616 0039d316-1c4b-4281-b951-d872f2087c98 --- third_party/tcmalloc/chromium/src/heap-profile-table.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'third_party/tcmalloc/chromium/src/heap-profile-table.cc') diff --git a/third_party/tcmalloc/chromium/src/heap-profile-table.cc b/third_party/tcmalloc/chromium/src/heap-profile-table.cc index c5c1db7..d880e56 100644 --- a/third_party/tcmalloc/chromium/src/heap-profile-table.cc +++ b/third_party/tcmalloc/chromium/src/heap-profile-table.cc @@ -294,7 +294,7 @@ void HeapProfileTable::MarkCurrentAllocations(AllocationMark mark) { } void HeapProfileTable::MarkUnmarkedAllocations(AllocationMark mark) { - const MarkArgs args(mark, true); + const MarkArgs args(mark, false); address_map_->Iterate(MarkIterator, args); } -- cgit v1.1