diff options
author | Michael Snyder <msnyder@vmware.com> | 2007-07-27 18:50:18 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2007-07-27 18:50:18 +0000 |
commit | c6aa130f78f1314bd01dba564a7ba6ec531d5601 (patch) | |
tree | 9651a4657c70a683ea98d6de74de7f7fd63846ea /bfd/elf32-i386.c | |
parent | c588c53caf5aad8ebbee231437d2146359392725 (diff) | |
download | gdb-c6aa130f78f1314bd01dba564a7ba6ec531d5601.zip gdb-c6aa130f78f1314bd01dba564a7ba6ec531d5601.tar.gz gdb-c6aa130f78f1314bd01dba564a7ba6ec531d5601.tar.bz2 |
2007-07-27 Michael Snyder <msnyder@access-company.com>
* elf32-i386.c (elf_i386_check_relocs): Check for null pointer.
Diffstat (limited to 'bfd/elf32-i386.c')
-rw-r--r-- | bfd/elf32-i386.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bfd/elf32-i386.c b/bfd/elf32-i386.c index abac6b2..c50e98d 100644 --- a/bfd/elf32-i386.c +++ b/bfd/elf32-i386.c @@ -1270,14 +1270,18 @@ elf_i386_check_relocs (bfd *abfd, /* This relocation describes the C++ object vtable hierarchy. Reconstruct it for later use during GC. */ case R_386_GNU_VTINHERIT: - if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset)) + BFD_ASSERT (h != NULL); + if (h != NULL + && !bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset)) return FALSE; break; /* This relocation describes which C++ vtable entries are actually used. Record for later use during GC. */ case R_386_GNU_VTENTRY: - if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_offset)) + BFD_ASSERT (h != NULL); + if (h != NULL + && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_offset)) return FALSE; break; |