diff options
author | Will Newton <willnewton@sourceware.org> | 2013-09-16 14:22:19 +0000 |
---|---|---|
committer | Will Newton <willnewton@sourceware.org> | 2013-09-16 14:22:19 +0000 |
commit | c623a6ef72a8d7dbbb646345f75646710cb9bb68 (patch) | |
tree | b6bb1d3c9f9c62a194239081588b7d6bec944cae /gdb/gdbserver | |
parent | 04a83fee11b7074fc1d7a2a6ea13c3a12f87b290 (diff) | |
download | gdb-c623a6ef72a8d7dbbb646345f75646710cb9bb68.zip gdb-c623a6ef72a8d7dbbb646345f75646710cb9bb68.tar.gz gdb-c623a6ef72a8d7dbbb646345f75646710cb9bb68.tar.bz2 |
gdbserver, aarch64: Zero out regs in aarch64_linux_set_debug_regs.
Apply the same fix that was applied to aarch64-linux-nat.c.
2013-09-16 Will Newton <will.newton@linaro.org>
* linux-aarch64-low.c (aarch64_linux_set_debug_regs): Zero
out regs.
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbserver/linux-aarch64-low.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 73191f4..1082e78 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2013-09-16 Will Newton <will.newton@linaro.org> + + * linux-aarch64-low.c (aarch64_linux_set_debug_regs): Zero + out regs. + 2013-09-06 Pedro Alves <palves@redhat.com> * Makefile.in (gdb_proc_service_h, regdef_h, regcache_h) diff --git a/gdb/gdbserver/linux-aarch64-low.c b/gdb/gdbserver/linux-aarch64-low.c index e37f602..93246b3 100644 --- a/gdb/gdbserver/linux-aarch64-low.c +++ b/gdb/gdbserver/linux-aarch64-low.c @@ -600,6 +600,7 @@ aarch64_linux_set_debug_regs (const struct aarch64_debug_reg_state *state, const CORE_ADDR *addr; const unsigned int *ctrl; + memset (®s, 0, sizeof (regs)); iov.iov_base = ®s; iov.iov_len = sizeof (regs); count = watchpoint ? aarch64_num_wp_regs : aarch64_num_bp_regs; |