[PATCH] Fix the number of relocations displayed for coff images.
Alan Modra
amodra@gmail.com
Wed Apr 19 11:37:00 GMT 2017
On Mon, Apr 17, 2017 at 09:13:31PM +0100, Wedson Almeida Filho wrote:
> Without this fix, objdump always shows 4 extra relocations.
> ---
> bfd/peXXigen.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/bfd/peXXigen.c b/bfd/peXXigen.c
> index eb9c879492..b729a537df 100644
> --- a/bfd/peXXigen.c
> +++ b/bfd/peXXigen.c
> @@ -2256,7 +2256,7 @@ pe_print_reloc (bfd * abfd, void * vfile)
> _("\nVirtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n"),
> (unsigned long) virtual_address, size, size, number);
>
> - chunk_end = p + size;
> + chunk_end = p + size - 8;
> if (chunk_end > end)
> chunk_end = end;
> j = 0;
Applying with a small change. Thanks.
--
Alan Modra
Australia Development Lab, IBM
More information about the Binutils
mailing list