+2012-12-13  Pierre Muller  <muller@sourceware.org>
+
+       * coff-pe-read.c (pe_text_section_offset): Increase size of sname
+       local variable and zero terminate it to avoid possible problems
+       in strcmp.
+
 2012-12-13  Pedro Alves  <palves@redhat.com>
 
        * coff-pe-read.c: Include coff/internal.h.
 
   /* Get the rva and size of the export section.  */
   for (i = 0; i < nsections; i++)
     {
-      char sname[8];
+      char sname[SCNNMLEN + 1];
       unsigned long secptr1 = secptr + 40 * i;
       unsigned long vaddr = pe_get32 (abfd, secptr1 + 12);
 
       bfd_seek (abfd, (file_ptr) secptr1, SEEK_SET);
-      bfd_bread (sname, (bfd_size_type) 8, abfd);
+      bfd_bread (sname, (bfd_size_type) SCNNMLEN, abfd);
+      sname[SCNNMLEN] = '\0';
       if (strcmp (sname, ".text") == 0)
        return vaddr;
     }