aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/elf.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index d8e9999..eebe6bd 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,7 @@
+2014-10-29 Dennis Brueni <dbrueni@slickedit.com>
+
+ * elf.c (elfcore_write_lwpstatus): fix typo in call to memcpy
+
2014-10-28 Nick Clifton <nickc@redhat.com>
PR binutils/17512
diff --git a/bfd/elf.c b/bfd/elf.c
index b5fc84b..dbb6f27 100644
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -9408,7 +9408,7 @@ elfcore_write_lwpstatus (bfd *abfd,
lwpstat.pr_lwpid = pid >> 16;
lwpstat.pr_cursig = cursig;
#if defined (HAVE_LWPSTATUS_T_PR_REG)
- memcpy (lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
+ memcpy (&lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
#elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
#if !defined(gregs)
memcpy (lwpstat.pr_context.uc_mcontext.gregs,