From: Michael Snyder Date: Fri, 27 Jul 2007 01:15:27 +0000 (+0000) Subject: 2007-07-26 Michael Snyder X-Git-Tag: binutils-2_18-branchpoint~87 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=507f5898089ebcd95d297538eebb04521ca81a2e;p=external%2Fbinutils.git 2007-07-26 Michael Snyder * coff-i386.c (coff_i386_rtype_to_howto): Guard against null. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 2cf4d1f..31f0087 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,4 +1,6 @@ -2007-07-26 Michael Snyder +2007-07-26 Michael Snyder + + * coff-i386.c (coff_i386_rtype_to_howto): Guard against null. * linker.c (bfd_section_already_linked_table_insert): Change return type from void to boolean. Return FALSE on failure. diff --git a/bfd/coff-i386.c b/bfd/coff-i386.c index 47c041d..e5c6a6b 100644 --- a/bfd/coff-i386.c +++ b/bfd/coff-i386.c @@ -518,7 +518,8 @@ coff_i386_rtype_to_howto (abfd, sec, rel, h, sym, addendp) *addendp -= pe_data(sec->output_section->owner)->pe_opthdr.ImageBase; } - if (rel->r_type == R_SECREL32) + BFD_ASSERT (sym != NULL); + if (rel->r_type == R_SECREL32 && sym != NULL) { bfd_vma osect_vma;