From 3b570dee4f42f8229b8defdf4360dc0f52e820a0 Mon Sep 17 00:00:00 2001 From: Yufeng Zhang Date: Mon, 11 Nov 2013 10:26:41 +0000 Subject: [PATCH] * elfxx-aarch64.c (_bfd_aarch64_elf_grok_prstatus): Fix hard-coded size of struct elf_prstatus. --- bfd/ChangeLog | 5 +++++ bfd/elfxx-aarch64.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index a1974b4..fd82ee7 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2013-11-12 Matthew Leach + + * elfxx-aarch64.c (_bfd_aarch64_elf_grok_prstatus): Fix hard-coded + size of struct elf_prstatus. + 2013-11-11 Alan Modra * elf64-ppc.c (allocate_dynrelocs): Revert 2013-11-04 change. diff --git a/bfd/elfxx-aarch64.c b/bfd/elfxx-aarch64.c index 395c999..129319d 100644 --- a/bfd/elfxx-aarch64.c +++ b/bfd/elfxx-aarch64.c @@ -500,7 +500,7 @@ _bfd_aarch64_elf_grok_prstatus (bfd *abfd, Elf_Internal_Note *note) default: return FALSE; - case 408: /* sizeof(struct elf_prstatus) on Linux/arm64. */ + case 392: /* sizeof(struct elf_prstatus) on Linux/arm64. */ /* pr_cursig */ elf_tdata (abfd)->core->signal = bfd_get_16 (abfd, note->descdata + 12); -- 2.7.4