diff options
author | Nick Clifton <nickc@redhat.com> | 2011-03-25 17:06:53 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2011-03-25 17:06:53 +0000 |
commit | b42adabf1ef3955e838f78bf4575070b73d7b4ae (patch) | |
tree | dce21cef7f659e7fad75566a2c0e02736e646509 /bfd | |
parent | d0f0b69d106989973b8924276a7c48f75b716258 (diff) | |
download | binutils-b42adabf1ef3955e838f78bf4575070b73d7b4ae.tar.gz binutils-b42adabf1ef3955e838f78bf4575070b73d7b4ae.tar.bz2 binutils-b42adabf1ef3955e838f78bf4575070b73d7b4ae.zip |
* coffcode.h (coff_set_alignment_hook): Check return of bfd_seek.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/coffcode.h | 8 |
2 files changed, 9 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d9467c8d780..b4ce01721ef 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2011-03-25 Michael Snyder <msnyder@vmware.com> + + * coffcode.h (coff_set_alignment_hook): Check return of bfd_seek. + 2011-03-25 Tristan Gingold <gingold@adacore.com> * vms-alpha.c (_bfd_vms_find_nearest_dst_line): Allow the use diff --git a/bfd/coffcode.h b/bfd/coffcode.h index 5500f01e749..81478e0da4d 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -1856,16 +1856,18 @@ coff_set_alignment_hook (bfd * abfd ATTRIBUTE_UNUSED, if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL) { struct external_reloc dst; - struct internal_reloc n; + struct internal_reloc an; file_ptr oldpos = bfd_tell (abfd); bfd_size_type relsz = bfd_coff_relsz (abfd); - bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0); + if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0) + return; if (bfd_bread (& dst, relsz, abfd) != relsz) return; coff_swap_reloc_in (abfd, &dst, &n); - bfd_seek (abfd, oldpos, 0); + if (bfd_seek (abfd, oldpos, 0) != 0) + return; section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1; section->rel_filepos += relsz; } |