From a191ea8dac5660849327c57d8efe55bd67e8b3c7 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Tue, 10 Jun 2003 20:34:09 +0000 Subject: * rs6000-nat.c (child_xfer_memory): Compute the right address when fetching the trailing bytes of the buffer we are about to write. --- gdb/rs6000-nat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gdb/rs6000-nat.c') diff --git a/gdb/rs6000-nat.c b/gdb/rs6000-nat.c index c5a0ea7..e825529 100644 --- a/gdb/rs6000-nat.c +++ b/gdb/rs6000-nat.c @@ -485,7 +485,8 @@ child_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, /* Fetch trailing memory needed for alignment. */ if (addr + count * sizeof (int) > memaddr + len) - if (!read_word (addr, buf + count - 1, arch64)) + if (!read_word (addr + (count - 1) * sizeof (int), + buf + count - 1, arch64)) return 0; /* Copy supplied data into memory buffer. */ -- cgit v1.1