projects
/
platform
/
upstream
/
binutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be33c5d
)
* arm-tdep.c (push_stack_item): Use xmalloc.
author
Richard Earnshaw
<richard.earnshaw@arm.com>
Fri, 4 Apr 2003 12:37:13 +0000
(12:37 +0000)
committer
Richard Earnshaw
<richard.earnshaw@arm.com>
Fri, 4 Apr 2003 12:37:13 +0000
(12:37 +0000)
gdb/arm-tdep.c
patch
|
blob
|
history
diff --git
a/gdb/arm-tdep.c
b/gdb/arm-tdep.c
index
21d8488
..
3968592
100644
(file)
--- a/
gdb/arm-tdep.c
+++ b/
gdb/arm-tdep.c
@@
-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 =
x
malloc (len);
si->len = len;
si->prev = prev;
memcpy (si->data, contents, len);