Prevent NULL pointer dereference.

This commit is contained in:
Alan Modra 2001-03-21 08:09:25 +00:00
parent e40eccb4fb
commit b32b5d6e64
2 changed files with 6 additions and 1 deletions

View file

@ -3089,7 +3089,7 @@ elf32_hppa_set_gp (abfd, info)
}
}
if (sec != NULL)
if (sec != NULL && sec->output_section != NULL)
gp_val += sec->output_section->vma + sec->output_offset;
elf_gp (abfd) = gp_val;