summaryrefslogtreecommitdiffstats
path: root/third_party
diff options
context:
space:
mode:
authordmikurube@chromium.org <dmikurube@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-07 08:09:43 +0000
committerdmikurube@chromium.org <dmikurube@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-07 08:09:43 +0000
commitbd04a20e258098070c6671b04d9a03a7dfa56441 (patch)
tree781b3d1c0233bfa81c8989a5d58d84b5624916ae /third_party
parent8a236b90515082704ed10f7cf9a6d80602d8d64d (diff)
downloadchromium_src-bd04a20e258098070c6671b04d9a03a7dfa56441.zip
chromium_src-bd04a20e258098070c6671b04d9a03a7dfa56441.tar.gz
chromium_src-bd04a20e258098070c6671b04d9a03a7dfa56441.tar.bz2
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
Diffstat (limited to 'third_party')
-rw-r--r--third_party/tcmalloc/chromium/src/heap-profile-table.cc2
1 files changed, 1 insertions, 1 deletions
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<const MarkArgs&>(MarkIterator, args);
}