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/elf64-ppc.c | |
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/elf64-ppc.c')
-rw-r--r-- | bfd/elf64-ppc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |