aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-03-28 23:21:43 +0000
committerAndrew Cagney <cagney@redhat.com>2001-03-28 23:21:43 +0000
commit2e94c4530460ddbbe83590c7ea01e1128e36c126 (patch)
tree48ec9fb48125092aa4b159dc61ab1926742e7695 /gdb
parent93d56215df715181dba7f5275de9863f28a6c941 (diff)
downloadgdb-2e94c4530460ddbbe83590c7ea01e1128e36c126.zip
gdb-2e94c4530460ddbbe83590c7ea01e1128e36c126.tar.gz
gdb-2e94c4530460ddbbe83590c7ea01e1128e36c126.tar.bz2
* 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')
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/cli/cli-cmds.c2
-rw-r--r--gdb/config/pa/xm-hppah.h7
-rw-r--r--gdb/mi/ChangeLog4
-rw-r--r--gdb/mi/mi-main.c2
5 files changed, 12 insertions, 9 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 2e470d4..62487dd 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,11 @@
2001-03-28 Andrew Cagney <ac131313@redhat.com>
+ * config/pa/xm-hppah.h (malloc): Really delete declaration
+ (MALLOC_INCOMPATIBLE): Really delete macro.
+ * cli/cli-cmds.c (apropos_command): Use xcalloc.
+
+2001-03-28 Andrew Cagney <ac131313@redhat.com>
+
* configure.in (build_warnings): Add -Wuninitialized.
* configure: Regenerate.
diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c
index 41001e9..c1c5f7b 100644
--- a/gdb/cli/cli-cmds.c
+++ b/gdb/cli/cli-cmds.c
@@ -542,7 +542,7 @@ apropos_command (char *searchstr, int from_tty)
regex_t pattern;
char *pattern_fastmap;
char errorbuffer[512];
- pattern_fastmap=calloc(256,sizeof(char));
+ pattern_fastmap = xcalloc (256, sizeof (char));
if (searchstr == NULL)
error("REGEXP string is empty");
diff --git a/gdb/config/pa/xm-hppah.h b/gdb/config/pa/xm-hppah.h
index 796b17a..bb21218 100644
--- a/gdb/config/pa/xm-hppah.h
+++ b/gdb/config/pa/xm-hppah.h
@@ -30,10 +30,3 @@
#define USG
#define HAVE_TERMIOS
-
-/* HP defines malloc and realloc as returning void *, even for non-ANSI
- compilations (such as with the native compiler). */
-
-#define MALLOC_INCOMPATIBLE
-
-extern void *malloc (size_t);
diff --git a/gdb/mi/ChangeLog b/gdb/mi/ChangeLog
index 6065a4f..1c8aa78 100644
--- a/gdb/mi/ChangeLog
+++ b/gdb/mi/ChangeLog
@@ -1,3 +1,7 @@
+2001-03-28 Andrew Cagney <ac131313@redhat.com>
+
+ * mi-main.c (mi_cmd_data_read_memory): Use xcalloc.
+
2001-03-26 Eli Zaretskii <eliz@is.elta.co.il>
* gdbmi.texinfo: Update copyright. Change Permissions to GFDL.
diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c
index a7c23c0..06638bf 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)
{