* objdump.c (dump_target_specific): Fix NULL pointer test.
This commit is contained in:
parent
a880d4c4d4
commit
c32d6f7bd4
@ -1,3 +1,7 @@
|
|||||||
|
2013-01-17 Nickolai Zeldovich <nickolai@csail.mit.edu>
|
||||||
|
|
||||||
|
* objdump.c (dump_target_specific): Fix NULL pointer test.
|
||||||
|
|
||||||
2013-01-16 Alan Modra <amodra@gmail.com>
|
2013-01-16 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
PR binutils/15018
|
PR binutils/15018
|
||||||
|
@ -2651,7 +2651,7 @@ dump_target_specific (bfd *abfd)
|
|||||||
if ((*desc)->filter (abfd))
|
if ((*desc)->filter (abfd))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
if (desc == NULL)
|
if (*desc == NULL)
|
||||||
{
|
{
|
||||||
non_fatal (_("option -P/--private not supported by this file"));
|
non_fatal (_("option -P/--private not supported by this file"));
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user