summaryrefslogtreecommitdiffstats
path: root/libc/bionic/malloc_debug_leak.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/bionic/malloc_debug_leak.cpp')
-rw-r--r--libc/bionic/malloc_debug_leak.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/bionic/malloc_debug_leak.cpp b/libc/bionic/malloc_debug_leak.cpp
index 7926a1f..837dccc 100644
--- a/libc/bionic/malloc_debug_leak.cpp
+++ b/libc/bionic/malloc_debug_leak.cpp
@@ -47,6 +47,7 @@
#include <unwind.h>
#include "debug_stacktrace.h"
+#include "malloc_debug_backtrace.h"
#include "malloc_debug_common.h"
#include "malloc_debug_disable.h"
@@ -311,7 +312,7 @@ extern "C" void* leak_malloc(size_t bytes) {
ScopedPthreadMutexLocker locker(&g_hash_table->lock);
uintptr_t backtrace[BACKTRACE_SIZE];
- size_t numEntries = get_backtrace(backtrace, BACKTRACE_SIZE);
+ size_t numEntries = GET_BACKTRACE(backtrace, BACKTRACE_SIZE);
AllocationEntry* header = reinterpret_cast<AllocationEntry*>(base);
header->entry = record_backtrace(backtrace, numEntries, bytes);