From 6cc749568f7e512b7029f68afd28ba10997d7820 Mon Sep 17 00:00:00 2001 From: Brian Sumner Date: Thu, 22 Aug 2024 14:33:30 -0700 Subject: [PATCH] Add back function argument lost during merge Change-Id: I060fd4a398caae5090c98e19fd4e693cfb938ca6 --- compiler-rt/lib/asan/asan_allocator.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler-rt/lib/asan/asan_allocator.cpp b/compiler-rt/lib/asan/asan_allocator.cpp index 03998d437d1386..8392424d49005e 100644 --- a/compiler-rt/lib/asan/asan_allocator.cpp +++ b/compiler-rt/lib/asan/asan_allocator.cpp @@ -584,11 +584,11 @@ struct Allocator { void *allocated; if (t) { AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage()); - allocated = allocator.Allocate(cache, needed_size, 8); + allocated = allocator.Allocate(cache, needed_size, 8, da_info); } else { SpinMutexLock l(&fallback_mutex); AllocatorCache *cache = &fallback_allocator_cache; - allocated = allocator.Allocate(cache, needed_size, 8); + allocated = allocator.Allocate(cache, needed_size, 8, da_info); } if (UNLIKELY(!allocated)) { SetAllocatorOutOfMemory();