Warning fix
authorAlan Modra <amodra@gmail.com>
Tue, 27 Jun 2017 05:13:49 +0000 (14:43 +0930)
committerAlan Modra <amodra@gmail.com>
Tue, 27 Jun 2017 05:16:52 +0000 (14:46 +0930)
PR binutils/21665
* libbfd.c (_bfd_generic_get_section_contents): Warning fix.
(_bfd_generic_get_section_contents_in_window): Likewise.

bfd/ChangeLog
bfd/libbfd.c

index 3cab920a60a8460539c1f36592b6134e3c421922..5f840a1ef3eaf4e84d5c0f4c624f8699ffd6d50c 100644 (file)
@@ -1,3 +1,9 @@
+2017-06-27  Alan Modra  <amodra@gmail.com>
+
+       PR binutils/21665
+       * libbfd.c (_bfd_generic_get_section_contents): Warning fix.
+       (_bfd_generic_get_section_contents_in_window): Likewise.
+
 2017-06-26  Kuan-Lin Chen  <rufus@andestech.com>
 
        * elfnn-riscv.c (perform_relocation): Support the new
@@ -42,7 +48,7 @@
        * compress.c (bfd_get_full_section_contents): Don't check the
        file size here.
        * libbfd.c (_bfd_generic_get_section_contents): Check for and
-       reject a section whoes size + offset is greater than the size
+       reject a section whose size + offset is greater than the size
        of the entire file.
        (_bfd_generic_get_section_contents_in_window): Likewise.
 
 2017-06-26  Nick Clifton  <nickc@redhat.com>
 
        PR binutils/21665
-       * opncls.c (get_build_id): Check that the section is beig enough
+       * opncls.c (get_build_id): Check that the section is big enough
        to contain the whole note.
        * compress.c (bfd_get_full_section_contents): Check for and reject
-       a section whoes size is greater than the size of the entire file.
+       a section whose size is greater than the size of the entire file.
        * elf32-v850.c (v850_elf_copy_notes): Allow for the ouput to not
        contain a notes section.
 
index 077645119c09ab21c7d42f4f290a36f13e44c724..0d9de2b30bd5da7c3e057266fdf48a3d25bdc3e6 100644 (file)
@@ -815,7 +815,7 @@ _bfd_generic_get_section_contents (bfd *abfd,
   filesz = bfd_get_file_size (abfd);
   if (offset + count < count
       || offset + count > sz
-      || section->filepos + offset + count > filesz)
+      || (ufile_ptr) section->filepos + offset + count > filesz)
     {
       bfd_set_error (bfd_error_invalid_operation);
       return FALSE;
@@ -873,7 +873,7 @@ _bfd_generic_get_section_contents_in_window
     sz = section->size;
   filesz = bfd_get_file_size (abfd);
   if (offset + count > sz
-      || section->filepos + offset + count > filesz
+      || (ufile_ptr) section->filepos + offset + count > filesz
       || ! bfd_get_file_window (abfd, section->filepos + offset, count, w,
                                TRUE))
     return FALSE;
This page took 0.029527 seconds and 4 git commands to generate.