*/
-static void
+static boolean
coff_write_relocs (abfd)
bfd * abfd;
{
struct external_reloc dst;
arelent **p = s->orelocation;
- bfd_seek (abfd, s->rel_filepos, SEEK_SET);
+ if (bfd_seek (abfd, s->rel_filepos, SEEK_SET) != 0)
+ return false;
for (i = 0; i < s->reloc_count; i++)
{
struct internal_reloc n;
n.r_type = q->howto->type;
#endif
coff_swap_reloc_out (abfd, &n, &dst);
- bfd_write ((PTR) & dst, 1, RELSZ, abfd);
+ if (bfd_write ((PTR) & dst, 1, RELSZ, abfd) != RELSZ)
+ return false;
}
}
+
+ return true;
}
/* Set flags and magic number of a coff file from architecture and machine
/* Write section headers to the file. */
internal_f.f_nscns = 0;
- bfd_seek (abfd,
- (file_ptr) ((abfd->flags & EXEC_P) ?
- (FILHSZ + AOUTSZ) : FILHSZ),
- SEEK_SET);
+ if (bfd_seek (abfd,
+ (file_ptr) ((abfd->flags & EXEC_P) ?
+ (FILHSZ + AOUTSZ) : FILHSZ),
+ SEEK_SET)
+ != 0)
+ return false;
{
#if 0
SCNHDR buff;
coff_swap_scnhdr_out (abfd, §ion, &buff);
- bfd_write ((PTR) (&buff), 1, SCNHSZ, abfd);
+ if (bfd_write ((PTR) (&buff), 1, SCNHSZ, abfd) != SCNHSZ)
+ return false;
}
coff_mangle_symbols (abfd);
if (! coff_write_symbols (abfd))
return false;
- if (!coff_write_linenumbers (abfd))
+ if (! coff_write_linenumbers (abfd))
+ return false;
+ if (! coff_write_relocs (abfd))
return false;
- coff_write_relocs (abfd);
}
if (text_sec)
{
{
FILHDR buff;
coff_swap_filehdr_out (abfd, (PTR) & internal_f, (PTR) & buff);
- bfd_write ((PTR) & buff, 1, FILHSZ, abfd);
+ if (bfd_write ((PTR) & buff, 1, FILHSZ, abfd) != FILHSZ)
+ return false;
}
if (abfd->flags & EXEC_P)
{
AOUTHDR buff;
coff_swap_aouthdr_out (abfd, (PTR) & internal_a, (PTR) & buff);
- bfd_write ((PTR) & buff, 1, AOUTSZ, abfd);
+ if (bfd_write ((PTR) & buff, 1, AOUTSZ, abfd) != AOUTSZ)
+ return false;
}
return true;
}
if (section->filepos == 0)
return true;
- bfd_seek (abfd, (file_ptr) (section->filepos + offset), SEEK_SET);
+ if (bfd_seek (abfd, (file_ptr) (section->filepos + offset), SEEK_SET) != 0)
+ return false;
if (count != 0)
{
bfd_set_error (bfd_error_no_memory);
return (NULL);
}
- bfd_seek (abfd, where, seek_direction);
- if (bfd_read (area, 1, size, abfd) != size)
- {
- bfd_set_error (bfd_error_system_call);
- return (NULL);
- } /* on error */
+ if (bfd_seek (abfd, where, seek_direction) != 0
+ || bfd_read (area, 1, size, abfd) != size)
+ return (NULL);
return (area);
} /* buy_and_read() */
unsigned int number_of_symbols = 0;
if (obj_symbols (abfd))
return true;
- bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET);
+ if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
+ return false;
/* Read in the symbol table */
if ((native_symbols = coff_get_normalized_symtab (abfd)) == NULL)