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();