diff options
author | Alan Modra <amodra@gmail.com> | 2007-02-12 11:18:11 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2007-02-12 11:18:11 +0000 |
commit | 4aac632ee9db7d3ff11e6ee1ca4f487ac6868e46 (patch) | |
tree | 10bc405c8cd398d2a099794a4df9b640729f916e /bfd/elflink.c | |
parent | 8da3dbc59acb44f417fef548b4015fb4f538a8c8 (diff) | |
download | gdb-4aac632ee9db7d3ff11e6ee1ca4f487ac6868e46.zip gdb-4aac632ee9db7d3ff11e6ee1ca4f487ac6868e46.tar.gz gdb-4aac632ee9db7d3ff11e6ee1ca4f487ac6868e46.tar.bz2 |
* elflink.c (evaluate_complex_relocation_symbols): Ignore relocs
with a zero symbol index.
Diffstat (limited to 'bfd/elflink.c')
-rw-r--r-- | bfd/elflink.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bfd/elflink.c b/bfd/elflink.c index 0b40641..d76faae 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -6769,7 +6769,10 @@ evaluate_complex_relocation_symbols (bfd * input_bfd, index = ELF32_R_SYM (rel->r_info); if (bed->s->arch_size == 64) index >>= 24; - + + if (index == STN_UNDEF) + continue; + if (index < locsymcount) { /* The symbol is local. */ |