summaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-09-10 19:17:08 +0000
committerNick Clifton <nickc@redhat.com>2000-09-10 19:17:08 +0000
commitff0829fd43f9844232e794f5be9f70fa20204616 (patch)
tree1c47022e669c45d8d95a1fd8da6d55ed49a9c2f0 /bfd
parent9830501b311056b41565a978a75e6f5de98aa8b3 (diff)
downloadbinutils-gdb-ff0829fd43f9844232e794f5be9f70fa20204616.tar.gz
Emit 8 NULs for target section name instead of dumping core when the target
symbol is undefined.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog6
-rw-r--r--bfd/coff-m68k.c3
2 files changed, 8 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 4d85c7933e4..ff7dcd4869a 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,9 @@
+2000-09-10 Michael Sokolov <msokolov@ivan.Harhan.ORG>
+
+ * coff-m68k.c (bfd_m68k_coff_create_embedded_relocs): Emit 8 NULs for
+ target section name instead of dumping core when the target symbol is
+ undefined.
+
2000-09-09 Kazu Hirata <kazu@hxi.com>
* riscix.c: Remove DEFUN.
diff --git a/bfd/coff-m68k.c b/bfd/coff-m68k.c
index 3ae98dbd12c..c5e60911317 100644
--- a/bfd/coff-m68k.c
+++ b/bfd/coff-m68k.c
@@ -504,7 +504,8 @@ bfd_m68k_coff_create_embedded_relocs (abfd, info, datasec, relsec, errmsg)
bfd_put_32 (abfd,
(irel->r_vaddr - datasec->vma + datasec->output_offset), p);
memset (p + 4, 0, 8);
- strncpy (p + 4, targetsec->output_section->name, 8);
+ if (targetsec != NULL)
+ strncpy (p + 4, targetsec->output_section->name, 8);
}
return true;