2007-07-25 Michael Snyder * elf.c (_bfd_elf_get_synthetic_symtab): Remove meaningless pointer increment. Index: elf.c =================================================================== RCS file: /cvs/src/src/bfd/elf.c,v retrieving revision 1.400 diff -p -r1.400 elf.c *** elf.c 24 Jul 2007 08:09:20 -0000 1.400 --- elf.c 25 Jul 2007 21:19:28 -0000 *************** _bfd_elf_get_synthetic_symtab (bfd *abfd *** 8419,8425 **** count = relplt->size / hdr->sh_entsize; size = count * sizeof (asymbol); p = relplt->relocation; ! for (i = 0; i < count; i++, s++, p++) size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt"); s = *ret = bfd_malloc (size); --- 8419,8425 ---- count = relplt->size / hdr->sh_entsize; size = count * sizeof (asymbol); p = relplt->relocation; ! for (i = 0; i < count; i++, p++) size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt"); s = *ret = bfd_malloc (size);