diff options
author | Alan Modra <amodra@gmail.com> | 2002-05-01 06:43:32 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-05-01 06:43:32 +0000 |
commit | dd70071f8b84788aae196c6e07924a8526e76b59 (patch) | |
tree | f8a139329abba7cf8c068dee50f3726d24282760 | |
parent | af566d9f8ce9121ba79c13c0b38eb5b2b98e0341 (diff) | |
download | binutils-gdb-dd70071f8b84788aae196c6e07924a8526e76b59.tar.gz |
* nm.c (print_symbol): Check returned filename from
bfd_find_nearest_line is non-NULL.
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/nm.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index de5f9f272ba..d303d49f32c 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2002-05-01 Alan Modra <amodra@bigpond.net.au> + + * nm.c (print_symbol): Check returned filename from + bfd_find_nearest_line is non-NULL. + 2002-04-25 Elena Zannoni <ezannoni@redhat.com> * readelf.c (get_AT_name): Handle DW_AT_GNU_vector. diff --git a/binutils/nm.c b/binutils/nm.c index 68eae77f55d..eb8a55f4eb4 100644 --- a/binutils/nm.c +++ b/binutils/nm.c @@ -1291,7 +1291,8 @@ print_symbol (abfd, sym, archive_bfd) bfd_asymbol_name (*r->sym_ptr_ptr)) == 0 && bfd_find_nearest_line (abfd, secs[i], syms, r->address, &filename, - &functionname, &lineno)) + &functionname, &lineno) + && filename != NULL) { /* We only print the first one we find. */ printf ("\t%s:%u", filename, lineno); |