diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2008-05-14 16:00:38 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2008-05-14 16:00:38 +0000 |
commit | 86a4952b1461aa668cb0fd55ececbb691eefdb12 (patch) | |
tree | afd628fcab7f1e562ca72100b4a42b5d60da9c21 /bfd | |
parent | 8944f3c2775287a2e34027b8ce4d2823eb304013 (diff) | |
download | gdb-86a4952b1461aa668cb0fd55ececbb691eefdb12.zip gdb-86a4952b1461aa668cb0fd55ececbb691eefdb12.tar.gz gdb-86a4952b1461aa668cb0fd55ececbb691eefdb12.tar.bz2 |
* elf32-ppc.c (ppc_elf_get_synthetic_symtab): Fix memset calls.
* elf64-ppc.c (ppc64_elf_get_synthetic_symtab): Likewise.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elf32-ppc.c | 4 | ||||
-rw-r--r-- | bfd/elf64-ppc.c | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index fa42524..7f8f329 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2008-05-14 Ulrich Weigand <uweigand@de.ibm.com> + + * elf32-ppc.c (ppc_elf_get_synthetic_symtab): Fix memset calls. + * elf64-ppc.c (ppc64_elf_get_synthetic_symtab): Likewise. + 2008-05-14 Alan Modra <amodra@bigpond.net.au> * Makefile.am: Run "make dep-am". diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c index 218a7ca..2dafde7 100644 --- a/bfd/elf32-ppc.c +++ b/bfd/elf32-ppc.c @@ -2464,7 +2464,7 @@ ppc_elf_get_synthetic_symtab (bfd *abfd, long symcount, asymbol **syms, } /* Add a symbol at the start of the glink branch table. */ - memset (s, sizeof *s, 0); + memset (s, 0, sizeof *s); s->the_bfd = abfd; s->flags = BSF_GLOBAL; s->section = glink; @@ -2478,7 +2478,7 @@ ppc_elf_get_synthetic_symtab (bfd *abfd, long symcount, asymbol **syms, if (resolv_vma) { /* Add a symbol for the glink PLT resolver. */ - memset (s, sizeof *s, 0); + memset (s, 0, sizeof *s); s->the_bfd = abfd; s->flags = BSF_GLOBAL; s->section = glink; diff --git a/bfd/elf64-ppc.c b/bfd/elf64-ppc.c index 9b11c37..8a26c8d 100644 --- a/bfd/elf64-ppc.c +++ b/bfd/elf64-ppc.c @@ -3143,7 +3143,7 @@ ppc64_elf_get_synthetic_symtab (bfd *abfd, if (resolv_vma) { /* Add a symbol for the main glink trampoline. */ - memset (s, sizeof *s, 0); + memset (s, 0, sizeof *s); s->the_bfd = abfd; s->flags = BSF_GLOBAL; s->section = glink; |