diff options
author | David Srbecky <dsrbecky@google.com> | 2021-05-13 00:03:26 +0100 |
---|---|---|
committer | David Srbecky <dsrbecky@google.com> | 2021-05-13 01:50:00 +0100 |
commit | 92b8d64f41da3c76f039d72168c9d27a5081bc06 (patch) | |
tree | 74f33c183194b9fe9ba8f8968a3b815cf819dfd4 /libc/malloc_debug/PointerData.cpp | |
parent | 3e0defac5d546c3a0ed0f5faae1a40502ffac003 (diff) |
Update API of MapInfo from libunwindstack
Use accessors to for all the fields.
Test: build
Change-Id: I6ae458002e059ef2f9d73931cc68f2f698f85d7e
Diffstat (limited to 'libc/malloc_debug/PointerData.cpp')
-rw-r--r-- | libc/malloc_debug/PointerData.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/malloc_debug/PointerData.cpp b/libc/malloc_debug/PointerData.cpp index 4f81ff7ff..90c913638 100644 --- a/libc/malloc_debug/PointerData.cpp +++ b/libc/malloc_debug/PointerData.cpp @@ -588,8 +588,8 @@ void PointerData::DumpLiveToFile(int fd) { dprintf(fd, " bt_info"); for (const auto& frame : *info.backtrace_info) { dprintf(fd, " {"); - if (frame.map_info != nullptr && !frame.map_info->name.empty()) { - dprintf(fd, "\"%s\"", frame.map_info->name.c_str()); + if (frame.map_info != nullptr && !frame.map_info->name().empty()) { + dprintf(fd, "\"%s\"", frame.map_info->name().c_str()); } else { dprintf(fd, "\"\""); } |