2003-08-12 Andrew Cagney <cagney@redhat.com>
authorAndrew Cagney <cagney@redhat.com>
Tue, 12 Aug 2003 17:45:13 +0000 (17:45 +0000)
committerAndrew Cagney <cagney@redhat.com>
Tue, 12 Aug 2003 17:45:13 +0000 (17:45 +0000)
* frame.c (deprecated_frame_xmalloc): Use XMALLOC, instead of
FRAME_OBSTACK_ZALLOC.

gdb/ChangeLog
gdb/frame.c

index 030ac89704855dc61f2259b12be4bb39ff9ee89a..cd4da94c518ad67b5c7870230fae506148fd619a 100644 (file)
@@ -1,3 +1,8 @@
+2003-08-12  Andrew Cagney  <cagney@redhat.com>
+
+       * frame.c (deprecated_frame_xmalloc): Use XMALLOC, instead of
+       FRAME_OBSTACK_ZALLOC.
+
 2003-08-12  Kevin Buettner  <kevinb@redhat.com>
 
        * i386-tdep.c (i386_gdbarch_init): Enable default support for
index 83808710f93792792dd428687a72d3fe41211eca..efcee75ddd2be701988ad3dd54bc7ff385724caa 100644 (file)
@@ -2279,7 +2279,8 @@ deprecated_set_frame_context (struct frame_info *fi,
 struct frame_info *
 deprecated_frame_xmalloc (void)
 {
-  struct frame_info *frame = FRAME_OBSTACK_ZALLOC (struct frame_info);
+  struct frame_info *frame = XMALLOC (struct frame_info);
+  memset (frame, 0, sizeof (*frame));
   frame->this_id.p = 1;
   return frame;
 }