summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2008-12-17 02:31:16 +0000
committerHans-Peter Nilsson <hp@axis.com>2008-12-17 02:31:16 +0000
commit4627d5184762f21ad223ff6845d4dbccfb502be7 (patch)
tree6e2279221be84c86857ec1d6c9d2752df197006f
parent539b151216c78ee9273e10b9119193108986369b (diff)
downloadbinutils-redhat-4627d5184762f21ad223ff6845d4dbccfb502be7.tar.gz
(cris_elf_relocate_section) <R_CRIS_8, R_CRIS_16, R_CRIS_32>: Add missing
gate h != NULL for h->def_regular test.
-rw-r--r--bfd/ChangeLog2
-rw-r--r--bfd/elf32-cris.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 40678eea71..3d7241afa0 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -2,6 +2,8 @@
* elf32-cris.c (elf_cris_copy_indirect_symbol): Return without
action for symbols other than bfd_link_hash_indirect.
+ (cris_elf_relocate_section) <R_CRIS_8, R_CRIS_16, R_CRIS_32>: Add missing
+ gate h != NULL for h->def_regular test.
2008-12-15 Hans-Peter Nilsson <hp@axis.com>
diff --git a/bfd/elf32-cris.c b/bfd/elf32-cris.c
index 2f6b4d86a1..1f4b0ddda6 100644
--- a/bfd/elf32-cris.c
+++ b/bfd/elf32-cris.c
@@ -1494,7 +1494,7 @@ cris_elf_relocate_section (output_bfd, info, input_bfd, input_section,
&& r_type != R_CRIS_16_PCREL
&& r_type != R_CRIS_32_PCREL)
|| (!info->symbolic
- || !h->def_regular)))
+ || (h != NULL && !h->def_regular))))
{
Elf_Internal_Rela outrel;
bfd_byte *loc;