public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* segv in coff_aarch64_addr32nb_reloc
@ 2023-01-26 21:51 Alan Modra
  0 siblings, 0 replies; only message in thread
From: Alan Modra @ 2023-01-26 21:51 UTC (permalink / raw)
  To: binutils

	* coff-aarch64.c (coff_aarch64_addr32nb_reloc): When output_bfd
	is NULL (which it is for objdump -W) get the output bfd via the
	input section.

diff --git a/bfd/coff-aarch64.c b/bfd/coff-aarch64.c
index 12e242e18d0..659cd4f162d 100644
--- a/bfd/coff-aarch64.c
+++ b/bfd/coff-aarch64.c
@@ -189,9 +189,10 @@ coff_aarch64_addr32nb_reloc (bfd *abfd,
 		       + symbol->section->output_section->vma);
       bfd_vma addend = bfd_getl_signed_32 (data + reloc_entry->address);
       relocation += addend;
-      if (bfd_get_flavour (output_bfd) == bfd_target_coff_flavour
-	  && obj_pe (output_bfd))
-	relocation -= pe_data (output_bfd)->pe_opthdr.ImageBase;
+      bfd *obfd = input_section->output_section->owner;
+      if (bfd_get_flavour (obfd) == bfd_target_coff_flavour
+	  && obj_pe (obfd))
+	relocation -= pe_data (obfd)->pe_opthdr.ImageBase;
       else
 	{
 	  *error_message = "unsupported";

-- 
Alan Modra
Australia Development Lab, IBM

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-01-26 21:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-26 21:51 segv in coff_aarch64_addr32nb_reloc Alan Modra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).