* nm.c (print_symbol): Check returned filename from

bfd_find_nearest_line is non-NULL.
This commit is contained in:
Alan Modra 2002-05-01 06:43:32 +00:00
parent af566d9f8c
commit dd70071f8b
2 changed files with 7 additions and 1 deletions

View File

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

View File

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