diff options
author | Alan Modra <amodra@gmail.com> | 2002-05-01 07:36:39 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-05-01 07:36:39 +0000 |
commit | 818c39a387392564763ae26fd9ef1837b448fb48 (patch) | |
tree | cef1afd1bd8581766698f2d4a8901daca739cc85 /bfd | |
parent | dd70071f8b84788aae196c6e07924a8526e76b59 (diff) | |
download | gdb-818c39a387392564763ae26fd9ef1837b448fb48.zip gdb-818c39a387392564763ae26fd9ef1837b448fb48.tar.gz gdb-818c39a387392564763ae26fd9ef1837b448fb48.tar.bz2 |
* syms.c (_bfd_stab_section_find_nearest_line): Don't bomb on NULL
file_name.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/syms.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 0e493df..d2fcd67 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,10 @@ 2002-05-01 Alan Modra <amodra@bigpond.net.au> + * syms.c (_bfd_stab_section_find_nearest_line): Don't bomb on NULL + file_name. + +2002-05-01 Alan Modra <amodra@bigpond.net.au> + * elf64-ppc.c (CROR_151515, CROR_313131): Define. (ppc64_elf_relocate_section): Use them. Don't look for plt calls on R_PPC64_ADDR24 relocs. Require a nop or no link reg on plt @@ -1297,7 +1297,8 @@ _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset, pfound, *pfound = true; - if (IS_ABSOLUTE_PATH(file_name) || directory_name == NULL) + if (file_name == NULL || IS_ABSOLUTE_PATH (file_name) + || directory_name == NULL) *pfilename = file_name; else { |