diff options
author | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-22 04:43:24 +0000 |
---|---|---|
committer | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-22 04:43:24 +0000 |
commit | bb19f3fe6967f1866385a28e73a4b82b8a9fe481 (patch) | |
tree | 3e9ca61bef4e49726c5383de8f21a8bb34d1bd2a /third_party | |
parent | 6b635aaf9bb802befcdc6ddb9268bc2f9435c59f (diff) | |
download | chromium_src-bb19f3fe6967f1866385a28e73a4b82b8a9fe481.zip chromium_src-bb19f3fe6967f1866385a28e73a4b82b8a9fe481.tar.gz chromium_src-bb19f3fe6967f1866385a28e73a4b82b8a9fe481.tar.bz2 |
Revert 89977 - Fix missing name in tcmalloc error message (to be reverted immediately).
TBR=cevans@chromium.org
Review URL: http://codereview.chromium.org/7234002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89978 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/tcmalloc/chromium/src/system-alloc.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/third_party/tcmalloc/chromium/src/system-alloc.cc b/third_party/tcmalloc/chromium/src/system-alloc.cc index f5aa0a0..5053981 100644 --- a/third_party/tcmalloc/chromium/src/system-alloc.cc +++ b/third_party/tcmalloc/chromium/src/system-alloc.cc @@ -160,7 +160,6 @@ class DefaultSysAllocator : public SysAllocator { for (int i = 0; i < kMaxAllocators; i++) { failed_[i] = true; allocs_[i] = NULL; - names_[i] = NULL; } } void SetChildAllocator(SysAllocator* alloc, unsigned int index, @@ -168,7 +167,6 @@ class DefaultSysAllocator : public SysAllocator { if (index < kMaxAllocators && alloc != NULL) { allocs_[index] = alloc; failed_[index] = false; - names_[index] = name; } } void* Alloc(size_t size, size_t *actual_size, size_t alignment); |