Merge "Adjust to MapInfo to new api."

This commit is contained in:
Christopher Ferris 2020-11-30 20:42:58 +00:00 committed by Gerrit Code Review
commit 8255631fa9
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class UnwinderMock : public unwindstack::Unwinder {
unwindstack::MapInfo* map_info = GetMaps()->Find(offset);
if (map_info != nullptr) {
std::string* new_build_id = new std::string(build_id);
map_info->build_id = reinterpret_cast<uintptr_t>(new_build_id);
map_info->build_id = new_build_id;
}
}
};