diff options
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | 2021-06-19 10:00:45 +0000 |
---|---|---|
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | 2021-06-19 10:00:45 +0000 |
commit | 7ee335c95f102ae222f2118bc17d3039b48a3ea0 (patch) | |
tree | f227dda74458d6728b5ac0ace6f0479a8759d8b0 /libc/malloc_debug/PointerData.cpp | |
parent | a3f1238f32ff3d564ef148eed68353bd09ed5800 (diff) | |
parent | 5aeffd28678e6c0b1d6ff06de85dc7bf22b5e53d (diff) |
Snap for 7473492 from 5aeffd28678e6c0b1d6ff06de85dc7bf22b5e53d to s-keystone-qcom-release
Change-Id: I78c39c0b7093faa0336ed035d5e466fd2467dd00
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 a15b1b13a..4c5559bb9 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, "\"\""); } |