* hpread.c (hpread_lookup_type): Use xmmalloc/xmrealloc rather
authorFred Fish <fnf@specifix.com>
Sat, 13 Jul 1996 05:34:40 +0000 (05:34 +0000)
committerFred Fish <fnf@specifix.com>
Sat, 13 Jul 1996 05:34:40 +0000 (05:34 +0000)
than xmalloc/xrealloc.

gdb/ChangeLog
gdb/hpread.c

index b0bbf5b7b3e3a595956d27f80c7ab0c429058e6d..81fc1abe9c870c43f6db51c83746ebea084b1286 100644 (file)
@@ -1,3 +1,8 @@
+Fri Jul 12 19:04:32 1996  Fred Fish  <fnf@cygnus.com>
+
+       * hpread.c (hpread_lookup_type): Use xmmalloc/xmrealloc rather
+       than xmalloc/xrealloc.
+
 Fri Jul 12 17:59:47 1996  Fred Fish  <fnf@ninemoons.com>
 
        * objfiles.c (map_to_file): Error return from mmalloc_findbase is
index 63ce77c0662cb7c6f5278b2498bb55a5bb580487..981b9e63b101f68f987da830bf0c20790ad2e843 100644 (file)
@@ -1216,12 +1216,14 @@ hpread_lookup_type (hp_type, objfile)
            {
              TYPE_VECTOR_LENGTH (objfile) = 100;
              TYPE_VECTOR (objfile) = (struct type **)
-               xmalloc (TYPE_VECTOR_LENGTH (objfile) * sizeof (struct type *));
+               xmmalloc (objfile -> md,
+                         TYPE_VECTOR_LENGTH (objfile) * sizeof (struct type *));
            }
          while (index >= TYPE_VECTOR_LENGTH (objfile))
            TYPE_VECTOR_LENGTH (objfile) *= 2;
          TYPE_VECTOR (objfile) = (struct type **)
-           xrealloc ((char *) TYPE_VECTOR (objfile),
+           xmrealloc (objfile -> md,
+                      (char *) TYPE_VECTOR (objfile),
                      (TYPE_VECTOR_LENGTH (objfile) * sizeof (struct type *)));
          memset (&TYPE_VECTOR (objfile)[old_len], 0,
                  (TYPE_VECTOR_LENGTH (objfile) - old_len) *