Skip to content

Commit 6cc7495

Browse files
committed
Add back function argument lost during merge
Change-Id: I060fd4a398caae5090c98e19fd4e693cfb938ca6
1 parent 86b0133 commit 6cc7495

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler-rt/lib/asan/asan_allocator.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,11 +584,11 @@ struct Allocator {
584584
void *allocated;
585585
if (t) {
586586
AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage());
587-
allocated = allocator.Allocate(cache, needed_size, 8);
587+
allocated = allocator.Allocate(cache, needed_size, 8, da_info);
588588
} else {
589589
SpinMutexLock l(&fallback_mutex);
590590
AllocatorCache *cache = &fallback_allocator_cache;
591-
allocated = allocator.Allocate(cache, needed_size, 8);
591+
allocated = allocator.Allocate(cache, needed_size, 8, da_info);
592592
}
593593
if (UNLIKELY(!allocated)) {
594594
SetAllocatorOutOfMemory();

0 commit comments

Comments
 (0)