* objdump.c (dump_target_specific): Fix NULL pointer test.
This commit is contained in:
parent
a880d4c4d4
commit
c32d6f7bd4
2 changed files with 5 additions and 1 deletions
|
@ -2651,7 +2651,7 @@ dump_target_specific (bfd *abfd)
|
|||
if ((*desc)->filter (abfd))
|
||||
break;
|
||||
|
||||
if (desc == NULL)
|
||||
if (*desc == NULL)
|
||||
{
|
||||
non_fatal (_("option -P/--private not supported by this file"));
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue