aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2002-12-21 06:36:02 +0000
committerKevin Buettner <kevinb@redhat.com>2002-12-21 06:36:02 +0000
commit3758ac483ded1c0d72f079e32ad1de4fcabecdb5 (patch)
tree97fe1b9ada8784f2e298dc30aaf47affaab88281 /gdb
parent19ed69dd065df2353a60f4c76c78244f9589e627 (diff)
downloadgdb-3758ac483ded1c0d72f079e32ad1de4fcabecdb5.zip
gdb-3758ac483ded1c0d72f079e32ad1de4fcabecdb5.tar.gz
gdb-3758ac483ded1c0d72f079e32ad1de4fcabecdb5.tar.bz2
Fix bug introduced when multiarching NUM_REGS.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/mips-tdep.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index caf57c3..f0ce860 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,11 @@
2002-12-20 Kevin Buettner <kevinb@redhat.com>
+ * mips-tdep.c (heuristic_proc_desc): Clear memory associated with
+ ``temp_saved_regs'', not the pointer or other storage contiguous
+ to this pointer.
+
+2002-12-20 Kevin Buettner <kevinb@redhat.com>
+
* Makefile.in (mips-linux-tdep.o): Add $(osabi_h) and $(gdb_string_h).
* config/mips/tm-linux.h (mips_linux_svr4_fetch_link_map_offsets)
(mips_linux_get_longjmp_target): Delete declarations.
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c
index 4fbaaf8..1686ee4 100644
--- a/gdb/mips-tdep.c
+++ b/gdb/mips-tdep.c
@@ -2142,7 +2142,7 @@ heuristic_proc_desc (CORE_ADDR start_pc, CORE_ADDR limit_pc,
return NULL;
memset (&temp_proc_desc, '\0', sizeof (temp_proc_desc));
temp_saved_regs = xrealloc (temp_saved_regs, SIZEOF_FRAME_SAVED_REGS);
- memset (&temp_saved_regs, '\0', SIZEOF_FRAME_SAVED_REGS);
+ memset (temp_saved_regs, '\0', SIZEOF_FRAME_SAVED_REGS);
PROC_LOW_ADDR (&temp_proc_desc) = start_pc;
PROC_FRAME_REG (&temp_proc_desc) = SP_REGNUM;
PROC_PC_REG (&temp_proc_desc) = RA_REGNUM;