diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-03-28 23:21:43 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-03-28 23:21:43 +0000 |
commit | 2e94c4530460ddbbe83590c7ea01e1128e36c126 (patch) | |
tree | 48ec9fb48125092aa4b159dc61ab1926742e7695 /gdb/mi/mi-main.c | |
parent | 93d56215df715181dba7f5275de9863f28a6c941 (diff) | |
download | binutils-gdb-2e94c4530460ddbbe83590c7ea01e1128e36c126.tar.gz |
* config/pa/xm-hppah.h (malloc): Really delete declaration
(MALLOC_INCOMPATIBLE): Really delete macro.
* cli/cli-cmds.c (apropos_command): Use xcalloc.
Diffstat (limited to 'gdb/mi/mi-main.c')
-rw-r--r-- | gdb/mi/mi-main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index a7c23c0cd13..06638bf3aa1 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -859,7 +859,7 @@ mi_cmd_data_read_memory (char *command, char **argv, int argc) /* create a buffer and read it in. */ total_bytes = word_size * nr_rows * nr_cols; - mbuf = calloc (total_bytes, 1); + mbuf = xcalloc (total_bytes, 1); make_cleanup (xfree, mbuf); if (mbuf == NULL) { |