OSDN Git Service

Fix bug introduced when multiarching NUM_REGS.
authorkevinb <kevinb>
Sat, 21 Dec 2002 06:36:02 +0000 (06:36 +0000)
committerkevinb <kevinb>
Sat, 21 Dec 2002 06:36:02 +0000 (06:36 +0000)
gdb/ChangeLog
gdb/mips-tdep.c

index caf57c3..f0ce860 100644 (file)
@@ -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.
index 4fbaaf8..1686ee4 100644 (file)
@@ -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;