forked from Imagelibrary/binutils-gdb
* ldmisc.c (vfinfo): Handle the case where %B is passed a NULL BFD.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2004-12-16 Martin Kögler <mkoegler@auto.tuwien.ac.at>
|
||||
|
||||
* ldmisc.c (vfinfo): Handle the case where %B is passed a NULL
|
||||
BFD.
|
||||
|
||||
2004-12-07 Ben Elliston <bje@gnu.org>
|
||||
|
||||
* ldemul.h: Forward declare struct option.
|
||||
|
||||
@@ -188,7 +188,10 @@ vfinfo (FILE *fp, const char *fmt, va_list arg)
|
||||
/* filename from a bfd */
|
||||
{
|
||||
bfd *abfd = va_arg (arg, bfd *);
|
||||
if (abfd->my_archive)
|
||||
|
||||
if (abfd == NULL)
|
||||
fprintf (fp, "<none>");
|
||||
else if (abfd->my_archive)
|
||||
fprintf (fp, "%s(%s)", abfd->my_archive->filename,
|
||||
abfd->filename);
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user