aboutsummaryrefslogtreecommitdiff
path: root/bfd/cofflink.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2004-08-18 09:44:11 +0000
committerNick Clifton <nickc@redhat.com>2004-08-18 09:44:11 +0000
commit271d0fc399a1d41cee9d2f34fbb15e18e008a6bb (patch)
treec7a38d4bba971e06d18fab4b8c4eb2ea5394587b /bfd/cofflink.c
parente65123b72d901fed332cc9ac00250db9ab1df587 (diff)
downloadfsf-binutils-gdb-271d0fc399a1d41cee9d2f34fbb15e18e008a6bb.zip
fsf-binutils-gdb-271d0fc399a1d41cee9d2f34fbb15e18e008a6bb.tar.gz
fsf-binutils-gdb-271d0fc399a1d41cee9d2f34fbb15e18e008a6bb.tar.bz2
PR 324
(coff_link_add_symbols): Check that the comdat pointer in the coff_section_data structure has been initialised before using it.
Diffstat (limited to 'bfd/cofflink.c')
-rw-r--r--bfd/cofflink.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bfd/cofflink.c b/bfd/cofflink.c
index 6520669..ca144cc 100644
--- a/bfd/cofflink.c
+++ b/bfd/cofflink.c
@@ -435,6 +435,7 @@ coff_link_add_symbols (bfd *abfd,
if (obj_pe (abfd)
&& (classification == COFF_SYMBOL_GLOBAL
|| classification == COFF_SYMBOL_PE_SECTION)
+ && coff_section_data (abfd, section) != NULL
&& coff_section_data (abfd, section)->comdat != NULL
&& strncmp (name, "??_", 3) == 0
&& strcmp (name, coff_section_data (abfd, section)->comdat->name) == 0)