Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5a06398 authored by Christopher Ferris's avatar Christopher Ferris Committed by Gerrit Code Review
Browse files

Merge "Update to support new shared_ptr returns." into main

parents b119efef 1503890f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2825,7 +2825,8 @@ TEST_F(CrasherTest, verify_build_id) {
    }

    prev_file = match[1];
    unwindstack::Elf elf(unwindstack::Memory::CreateFileMemory(prev_file, 0).release());
    auto elf_memory = unwindstack::Memory::CreateFileMemory(prev_file, 0);
    unwindstack::Elf elf(elf_memory);
    if (!elf.Init() || !elf.valid()) {
      // Skipping invalid elf files.
      continue;