From eeea3ca96cd281d49e4e6594025ed8dc2d9cc816 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Wed, 18 Aug 2004 09:44:11 +0000 Subject: PR 324 (coff_link_add_symbols): Check that the comdat pointer in the coff_section_data structure has been initialised before using it. --- bfd/cofflink.c | 1 + 1 file changed, 1 insertion(+) (limited to 'bfd/cofflink.c') diff --git a/bfd/cofflink.c b/bfd/cofflink.c index 6520669f28..ca144cc492 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) -- cgit v1.2.1