mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
PR24233, Out of memory
PR 24233 * objdump.c (dump_bfd_private_header): Print warning if bfd_print_private_bfd_data returns false.
This commit is contained in:
parent
6caa91b6e5
commit
7d272a55ca
@ -1,3 +1,9 @@
|
|||||||
|
2019-02-20 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
|
PR 24233
|
||||||
|
* objdump.c (dump_bfd_private_header): Print warning if
|
||||||
|
bfd_print_private_bfd_data returns false.
|
||||||
|
|
||||||
2019-02-12 Nick Clifton <nickc@redhat.com>
|
2019-02-12 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
PR 23440
|
PR 23440
|
||||||
|
@ -3178,7 +3178,9 @@ dump_bfd_header (bfd *abfd)
|
|||||||
static void
|
static void
|
||||||
dump_bfd_private_header (bfd *abfd)
|
dump_bfd_private_header (bfd *abfd)
|
||||||
{
|
{
|
||||||
bfd_print_private_bfd_data (abfd, stdout);
|
if (!bfd_print_private_bfd_data (abfd, stdout))
|
||||||
|
non_fatal (_("warning: private headers incomplete: %s"),
|
||||||
|
bfd_errmsg (bfd_get_error ()));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user