From 5f69259ea4a8fa974292170d02e3500cd7c3d038 Mon Sep 17 00:00:00 2001 From: Kai Tietz Date: Thu, 3 Apr 2008 14:44:55 +0000 Subject: [PATCH] Kai Tietz PR ld/6026 * pe-dll.c (make_head): Fix iat and thunk addend offset. --- ld/ChangeLog | 5 +++++ ld/pe-dll.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index 1ed940c..6a9fb95 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2008-04-03 Kai Tietz + + PR ld/6026 + * pe-dll.c (make_head): Fix iat and thunk addend offset. + 2008-03-31 Nick Clifton * po/fr.po: Updated French translation. diff --git a/ld/pe-dll.c b/ld/pe-dll.c index c0cf63d..4168aaa 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -1729,7 +1729,7 @@ make_head (bfd *parent) d2 = xmalloc (20); id2->contents = d2; memset (d2, 0, 20); - d2[0] = d2[16] = 4; /* Reloc addend. */ + d2[0] = d2[16] = PE_IDATA5_SIZE; /* Reloc addend. */ quick_reloc (abfd, 0, BFD_RELOC_RVA, 2); quick_reloc (abfd, 12, BFD_RELOC_RVA, 4); quick_reloc (abfd, 16, BFD_RELOC_RVA, 1); -- 2.7.4