diff options
author | Alan Modra <amodra@gmail.com> | 2013-01-17 02:24:47 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2013-01-17 02:24:47 +0000 |
commit | c32d6f7bd43c74fbe950858502e6e9ba6eaca2af (patch) | |
tree | 64231cbbbbeb2d6230660cfd88a6522c6d35fb0d /binutils/objdump.c | |
parent | a880d4c4d4a102b195c9532f4222f5ad4546878d (diff) | |
download | gdb-c32d6f7bd43c74fbe950858502e6e9ba6eaca2af.zip gdb-c32d6f7bd43c74fbe950858502e6e9ba6eaca2af.tar.gz gdb-c32d6f7bd43c74fbe950858502e6e9ba6eaca2af.tar.bz2 |
* objdump.c (dump_target_specific): Fix NULL pointer test.
Diffstat (limited to 'binutils/objdump.c')
-rw-r--r-- | binutils/objdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/objdump.c b/binutils/objdump.c index 9164d83..394a647 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -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; |