* arm-tdep.c (push_stack_item): Use xmalloc.
authorRichard Earnshaw <richard.earnshaw@arm.com>
Fri, 4 Apr 2003 12:37:13 +0000 (12:37 +0000)
committerRichard Earnshaw <richard.earnshaw@arm.com>
Fri, 4 Apr 2003 12:37:13 +0000 (12:37 +0000)
gdb/arm-tdep.c

index 21d84887d7a140f1c3cea8bee73a6e29d21b87af..396859238ae85974edb2f8d450d7523ae7a3d195 100644 (file)
@@ -1383,7 +1383,7 @@ push_stack_item (struct stack_item *prev, void *contents, int len)
 {
   struct stack_item *si;
   si = xmalloc (sizeof (struct stack_item));
-  si->data = malloc (len);
+  si->data = xmalloc (len);
   si->len = len;
   si->prev = prev;
   memcpy (si->data, contents, len);