2007-07-26 Michael Snyder <msnyder@access-company.com>

* coff-i386.c (coff_i386_rtype_to_howto): Guard against null.
This commit is contained in:
Michael Snyder
2007-07-27 01:15:27 +00:00
parent a6626e8c30
commit 507f589808
2 changed files with 5 additions and 2 deletions

View File

@@ -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;