* config/pa/xm-hppah.h (malloc): Really delete declaration
authorAndrew Cagney <cagney@redhat.com>
Wed, 28 Mar 2001 23:21:43 +0000 (23:21 +0000)
committerAndrew Cagney <cagney@redhat.com>
Wed, 28 Mar 2001 23:21:43 +0000 (23:21 +0000)
(MALLOC_INCOMPATIBLE): Really delete macro.
* cli/cli-cmds.c (apropos_command): Use xcalloc.

gdb/ChangeLog
gdb/cli/cli-cmds.c
gdb/config/pa/xm-hppah.h
gdb/mi/ChangeLog
gdb/mi/mi-main.c

index 2e470d4de4194128709c816557a60181c27f534e..62487dd23f59ec446305651f811ddc7c794f82d1 100644 (file)
@@ -1,3 +1,9 @@
+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.
index 41001e9ed31798b12f04407b1e9603aa0d2e84a2..c1c5f7b747ef82963f63acb656a6a53c55527d1d 100644 (file)
@@ -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");
 
index 796b17af24cfae5e18e35ca34bd08decd11204f1..bb212187afa896f1964c211231ad0bfc625fb98e 100644 (file)
 #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);
index 6065a4f9515fe78ca8335f6f58975a0b69caf704..1c8aa783d3345b6e67fe9476c0488d20d4861fcd 100644 (file)
@@ -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.
index a7c23c0cd132222b0f0744d0decbd3092844ef25..06638bf3aa1acf22d38dc4d72490cd26de063189 100644 (file)
@@ -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)
     {