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

Commit d5c4d2ae authored by Mike Dodd's avatar Mike Dodd Committed by Android Git Automerger
Browse files

am 7fdcc435: am 89118032: Merge "Fix bug in debuggerd so it can successfully...

am 7fdcc435: am 89118032: Merge "Fix bug in debuggerd so it can successfully find the exidx section in libraries. This should fix the bug where the exception stack wasn\'t being printed past the PC." into gingerbread

Merge commit '7fdcc435'

* commit '7fdcc435':
  Fix bug in debuggerd so it can successfully find the exidx section in
parents f13c2ba5 7fdcc435
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -375,7 +375,7 @@ static void parse_elf_info(mapinfo *milist, pid_t pid)
            ptr = (Elf32_Phdr *) (mi->start + ehdr.e_phoff);
            for (i = 0; i < ehdr.e_phnum; i++) {
                /* Parse the program header */
                get_remote_struct(pid, (char *) ptr+i, &phdr,
                get_remote_struct(pid, (char *) (ptr+i), &phdr,
                                  sizeof(Elf32_Phdr));
                /* Found a EXIDX segment? */
                if (phdr.p_type == PT_ARM_EXIDX) {