From: Kevin Buettner Date: Sat, 21 Dec 2002 06:36:02 +0000 (+0000) Subject: Fix bug introduced when multiarching NUM_REGS. X-Git-Tag: cagney-unwind-20030108-branchpoint~240 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3758ac483ded1c0d72f079e32ad1de4fcabecdb5;p=thirdparty%2Fbinutils-gdb.git Fix bug introduced when multiarching NUM_REGS. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index caf57c3d135..f0ce860e0e4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2002-12-20 Kevin Buettner + + * 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 * Makefile.in (mips-linux-tdep.o): Add $(osabi_h) and $(gdb_string_h). diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 4fbaaf8e8a9..1686ee45433 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;