mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-02 19:46:09 +08:00
* objdump.c (dump_target_specific): Fix NULL pointer test.
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user