(process_program_headers): Fix snafu - if the program headers are
not available then this is not a cause to fail.
(process_corefile_note_segments): Likewise.
(process_object): Reverse the logic of the return value.
(process_archive): Likewise.
(process_file): Likewise.
+ (process_program_headers): Fix snafu - if the program headers are
+ not available then this is not a cause to fail.
+ (process_corefile_note_segments): Likewise.
2017-02-24 Maciej W. Rozycki <macro@imgtec.com>
}
if (! get_program_headers (file))
- return FALSE;
+ return TRUE;
if (do_segments)
{
inote.namedata = temp;
}
- res &= process_note (& inote, file, section);
+ if (! process_note (& inote, file, section))
+ res = FALSE;
if (temp != NULL)
{
bfd_boolean res = TRUE;
if (! get_program_headers (file))
- return FALSE;
+ return TRUE;
for (i = 0, segment = program_headers;
i < elf_header.e_phnum;