diff options
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | 2021-06-29 16:22:10 +0000 |
---|---|---|
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | 2021-06-29 16:22:10 +0000 |
commit | c0fa380b2a08a30c323b26ed749495b1f36d8be6 (patch) | |
tree | 3d942a3ac6295515b8e322cd5d6ac6a7dc81bb09 /libc/malloc_debug/PointerData.cpp | |
parent | af1f724947d8a37c13e6e7163ba35481b8ba4dcc (diff) | |
parent | 5af6b7975694b08e8e363e9435990f248fbb39ca (diff) |
Snap for 7441201 from 5af6b7975694b08e8e363e9435990f248fbb39ca to s-keystone-qcom-release
Change-Id: Ia74024ee27474e3df8196cf7de426c84561361dd
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 4c5559bb9..a15b1b13a 100644 --- a/libc/malloc_debug/PointerData.cpp +++ b/libc/malloc_debug/PointerData.cpp @@ -591,8 +591,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, "\"\""); } |