* f-lang.c (allocate_saved_bf_node, allocate_saved_function_node,
authorFred Fish <fnf@specifix.com>
Mon, 12 Feb 1996 21:03:12 +0000 (21:03 +0000)
committerFred Fish <fnf@specifix.com>
Mon, 12 Feb 1996 21:03:12 +0000 (21:03 +0000)
allocate_saved_f77_common_node, allocate_common_entry_node,
add_common_block): Use xmalloc rather than malloc, some of which
were unchecked.
* gnu-regex.c: At same point as other gdb specific changes
#undef malloc and then #define it to xmalloc.
* ch-exp.c (growbuf_by_size): Use xmalloc/xrealloc rather than
bare unchecked calls to malloc/realloc.
* stabsread.c (dbx_lookup_type): Use xmalloc rather than bare
  unchecked call to malloc.

gdb/ChangeLog
gdb/ch-exp.c
gdb/f-lang.c
gdb/gnu-regex.c
gdb/stabsread.c

index 97c12b973d001ce2dcee5c5398be4c4424f2bfef..505166d35424a6f2d0fcf3687458efea23f2ebdd 100644 (file)
@@ -1,3 +1,16 @@
+Mon Feb 12 13:11:32 1996  Fred Fish  <fnf@cygnus.com>
+
+       * f-lang.c (allocate_saved_bf_node, allocate_saved_function_node,
+       allocate_saved_f77_common_node, allocate_common_entry_node,
+       add_common_block): Use xmalloc rather than malloc, some of which
+       were unchecked.
+       * gnu-regex.c: At same point as other gdb specific changes
+       #undef malloc and then #define it to xmalloc.
+       * ch-exp.c (growbuf_by_size): Use xmalloc/xrealloc rather than
+       bare unchecked calls to malloc/realloc.
+       * stabsread.c (dbx_lookup_type): Use xmalloc rather than bare
+       unchecked call to malloc.
+
 Wed Feb  7 11:31:26 1996  Stu Grossman  (grossman@cygnus.com)
 
        * symtab.c (gdb_mangle_name):  Change opname var to be const to
index 95021e7ca7eafbe54a426dba8e87ad76ab0467e6..4767d942f69fad02bc53e7ea4402900074c2d20c 100644 (file)
@@ -26,15 +26,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
    during the process of parsing; the lower levels of the tree always
    come first in the result.
 
-   Note that malloc's and realloc's in this file are transformed to
-   xmalloc and xrealloc respectively by the same sed command in the
-   makefile that remaps any other malloc/realloc inserted by the parser
-   generator.  Doing this with #defines and trying to control the interaction
-   with include files (<malloc.h> and <stdlib.h> for example) just became
-   too messy, particularly when such includes can be inserted at random
-   times by the parser generator.
-
-   Also note that the language accepted by this parser is more liberal
+   Note that the language accepted by this parser is more liberal
    than the one accepted by an actual Chill compiler.  For example, the
    language rule that a simple name string can not be one of the reserved
    simple name strings is not enforced (e.g "case" is not treated as a
@@ -1094,11 +1086,11 @@ growbuf_by_size (count)
   tempbufsize += growby;
   if (tempbuf == NULL)
     {
-      tempbuf = (char *) malloc (tempbufsize);
+      tempbuf = (char *) xmalloc (tempbufsize);
     }
   else
     {
-      tempbuf = (char *) realloc (tempbuf, tempbufsize);
+      tempbuf = (char *) xrealloc (tempbuf, tempbufsize);
     }
 }
 
index 47a889302d8aea25f510ed4b37492535b30fb3a5..65ad64c1cac459aa14d0d7b4621239ea745af24a 100644 (file)
@@ -547,10 +547,7 @@ SAVED_BF_PTR allocate_saved_bf_node()
 {
   SAVED_BF_PTR new;
   
-  new = (SAVED_BF_PTR) malloc (sizeof (SAVED_BF));
-  
-  if (new == NULL)
-    fatal("could not allocate enough memory to save one more .bf on save list");
+  new = (SAVED_BF_PTR) xmalloc (sizeof (SAVED_BF));
   return(new);
 }
 
@@ -558,11 +555,7 @@ SAVED_FUNCTION *allocate_saved_function_node()
 {
   SAVED_FUNCTION *new;
   
-  new = (SAVED_FUNCTION *) malloc (sizeof (SAVED_FUNCTION));
-  
-  if (new == NULL)
-    fatal("could not allocate enough memory to save one more function on save list");
-  
+  new = (SAVED_FUNCTION *) xmalloc (sizeof (SAVED_FUNCTION));
   return(new);
 }
 
@@ -570,11 +563,7 @@ SAVED_F77_COMMON_PTR allocate_saved_f77_common_node()
 {
   SAVED_F77_COMMON_PTR new;
   
-  new = (SAVED_F77_COMMON_PTR) malloc (sizeof (SAVED_F77_COMMON));
-  
-  if (new == NULL)
-    fatal("could not allocate enough memory to save one more F77 COMMON blk on save list");
-  
+  new = (SAVED_F77_COMMON_PTR) xmalloc (sizeof (SAVED_F77_COMMON));
   return(new);
 }
 
@@ -582,11 +571,7 @@ COMMON_ENTRY_PTR allocate_common_entry_node()
 {
   COMMON_ENTRY_PTR new;
   
-  new = (COMMON_ENTRY_PTR) malloc (sizeof (COMMON_ENTRY));
-  
-  if (new == NULL)
-    fatal("could not allocate enough memory to save one more COMMON entry on save list");
-  
+  new = (COMMON_ENTRY_PTR) xmalloc (sizeof (COMMON_ENTRY));
   return(new);
 }
 
@@ -635,10 +620,10 @@ void add_common_block(name,offset,secnum,func_stab)
   
   tmp = allocate_saved_f77_common_node();
   
-  local_copy_func_stab = malloc (strlen(func_stab) + 1);
+  local_copy_func_stab = xmalloc (strlen(func_stab) + 1);
   strcpy(local_copy_func_stab,func_stab); 
   
-  tmp->name = malloc(strlen(name) + 1);
+  tmp->name = xmalloc(strlen(name) + 1);
   
   /* local_copy_func_stab is a stabstring, let us first extract the 
      function name from the stab by NULLing out the ':' character. */ 
@@ -653,7 +638,7 @@ void add_common_block(name,offset,secnum,func_stab)
     error("Malformed function STAB found in add_common_block()");
   
   
-  tmp->owning_function = malloc (strlen(local_copy_func_stab) + 1); 
+  tmp->owning_function = xmalloc (strlen(local_copy_func_stab) + 1); 
   
   strcpy(tmp->owning_function,local_copy_func_stab); 
   
index 062fbc683d1b395e3cc5f661b95fae6b1f312f4b..601e3b5fbb269a70bd61475170790f140b456eb3 100644 (file)
@@ -34,6 +34,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #include "defs.h"
 #include "gdb_string.h"
+#undef malloc
+#define malloc xmalloc
 
 /*
  * Define the syntax stuff, so we can do the \<...\> things.
index 541e886474b83bda4cb3ec1ef45a79da9ee47b5e..4ea4ba34ebd3b795351534c956a1aa00010ec975 100644 (file)
@@ -291,7 +291,7 @@ Invalid symbol data: type number (%d,%d) out of range at symtab pos %d.",
            {
              type_vector_length = INITIAL_TYPE_VECTOR_LENGTH;
              type_vector = (struct type **)
-               malloc (type_vector_length * sizeof (struct type *));
+               xmalloc (type_vector_length * sizeof (struct type *));
            }
          while (index >= type_vector_length)
            {