From: Alan Modra Date: Tue, 28 Mar 2023 01:30:02 +0000 (+1030) Subject: ubsan: elfnn-aarch64.c:4595:19: runtime error: load of value 190 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d75137c755cb2c9b36af5f3aeb1f919b411c8e41;p=binutils-gdb.git ubsan: elfnn-aarch64.c:4595:19: runtime error: load of value 190 which is not a valid value for type '_Bool' * elfnn-aarch64.c (stub_hash_newfunc): Clear all fields past root. --- diff --git a/bfd/elfnn-aarch64.c b/bfd/elfnn-aarch64.c index c321ceb382e..c4db1e6f168 100644 --- a/bfd/elfnn-aarch64.c +++ b/bfd/elfnn-aarch64.c @@ -2767,14 +2767,9 @@ stub_hash_newfunc (struct bfd_hash_entry *entry, /* Initialize the local fields. */ eh = (struct elf_aarch64_stub_hash_entry *) entry; - eh->adrp_offset = 0; - eh->stub_sec = NULL; - eh->stub_offset = 0; - eh->target_value = 0; - eh->target_section = NULL; - eh->stub_type = aarch64_stub_none; - eh->h = NULL; - eh->id_sec = NULL; + memset (&eh->stub_sec, 0, + (sizeof (struct elf_aarch64_stub_hash_entry) + - offsetof (struct elf_aarch64_stub_hash_entry, stub_sec))); } return entry;