From fc9e6d6bbd20f7c4802310525cd74be54fd4df67 Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Tue, 22 Jun 1999 13:57:15 +0000 Subject: [PATCH] * elflink.h (link_read_relocs): Explicitly cast external_relocs to bfd_byte * before performing pointer arithmetic. --- bfd/ChangeLog | 5 +++++ bfd/elflink.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 762fddf5e..6da6d4ebe 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +1999-06-22 Mark Mitchell + + * elflink.h (link_read_relocs): Explicitly cast external_relocs to + bfd_byte * before performing pointer arithmetic. + Tue Jun 22 13:06:25 1999 Jeffrey A Law (law@cygnus.com) * elf-hppa.h: New file. Common stuff for elf32 and elf64 PA diff --git a/bfd/elflink.h b/bfd/elflink.h index 5aca205cf..4564cdefb 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -2123,7 +2123,7 @@ NAME(_bfd_elf,link_read_relocs) (abfd, o, external_relocs, internal_relocs, if (!elf_link_read_relocs_from_section (abfd, elf_section_data (o)->rel_hdr2, - external_relocs + rel_hdr->sh_size, + ((bfd_byte *) external_relocs) + rel_hdr->sh_size, internal_relocs + rel_hdr->sh_size / rel_hdr->sh_entsize)) goto error_return; -- 2.11.4.GIT