summaryrefslogtreecommitdiff
path: root/lib/sanitizer_common/sanitizer_allocator_local_cache.h
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2016-08-09 20:54:50 +0000
committerKostya Serebryany <kcc@google.com>2016-08-09 20:54:50 +0000
commit64b05038ff88929ef1a49a389f8e1d7c92a09bc6 (patch)
tree665b9e1749082cc167f465f74217beccb7f98d3f /lib/sanitizer_common/sanitizer_allocator_local_cache.h
parent055eba88d72e693a75bae2535c304d3428fb9c93 (diff)
[sanitizer] minor refactoring in the allocator, NFC
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@278163 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/sanitizer_common/sanitizer_allocator_local_cache.h')
-rw-r--r--lib/sanitizer_common/sanitizer_allocator_local_cache.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/sanitizer_common/sanitizer_allocator_local_cache.h b/lib/sanitizer_common/sanitizer_allocator_local_cache.h
index a63a50693..38d63a555 100644
--- a/lib/sanitizer_common/sanitizer_allocator_local_cache.h
+++ b/lib/sanitizer_common/sanitizer_allocator_local_cache.h
@@ -140,8 +140,7 @@ struct SizeClassAllocatorLocalCache {
PerClass *c = &per_class_[class_id];
TransferBatch *b = allocator->AllocateBatch(&stats_, this, class_id);
CHECK_GT(b->Count(), 0);
- for (uptr i = 0; i < b->Count(); i++)
- c->batch[i] = b->Get(i);
+ b->CopyToArray(c->batch);
c->count = b->Count();
DestroyBatch(class_id, allocator, b);
}