diff options
author | Alan Modra <amodra@gmail.com> | 2022-05-30 17:04:39 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2022-05-30 17:04:39 +0930 |
commit | 7273d78f3f7ae3701512f1ff423430f51b011ece (patch) | |
tree | 53d5096b48a68232ce5a476df4a222e4f07586d8 /bfd/doc/chew.c | |
parent | f43ffe07b1e5c3fe8c0f55e33d047e64b7bdb624 (diff) | |
download | gdb-7273d78f3f7ae3701512f1ff423430f51b011ece.zip gdb-7273d78f3f7ae3701512f1ff423430f51b011ece.tar.gz gdb-7273d78f3f7ae3701512f1ff423430f51b011ece.tar.bz2 |
use libiberty xmalloc in bfd/doc/chew.c
Catch out of memory.
* doc/chew.c: Include libibery.h.
(init_string_with_size, nextword): Replace malloc with xmalloc.
(newentry, add_to_definition): Likewise.
(catchar, catbuf): Replace realloc with xrealloc.
(add_intrinsic): Replace strdup with xstrdup.
* doc/local.mk (LIBIBERTY): Define.
(chew): Link against libiberty.
* Makefile.in: Regenerate.
Diffstat (limited to 'bfd/doc/chew.c')
-rw-r--r-- | bfd/doc/chew.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/bfd/doc/chew.c b/bfd/doc/chew.c index 22921e6..9722a89 100644 --- a/bfd/doc/chew.c +++ b/bfd/doc/chew.c @@ -82,6 +82,7 @@ Foo. */ #include "ansidecl.h" +#include "libiberty.h" #include <assert.h> #include <stdio.h> #include <ctype.h> @@ -141,7 +142,7 @@ init_string_with_size (string_type *buffer, unsigned int size) { buffer->write_idx = 0; buffer->size = size; - buffer->ptr = (char *) malloc (size); + buffer->ptr = xmalloc (size); } static void @@ -201,7 +202,7 @@ catchar (string_type *buffer, int ch) if (buffer->write_idx == buffer->size) { buffer->size *= 2; - buffer->ptr = (char *) realloc (buffer->ptr, buffer->size); + buffer->ptr = xrealloc (buffer->ptr, buffer->size); } buffer->ptr[buffer->write_idx++] = ch; @@ -223,7 +224,7 @@ catbuf (string_type *buffer, char *buf, unsigned int len) { while (buffer->write_idx + len >= buffer->size) buffer->size *= 2; - buffer->ptr = (char *) realloc (buffer->ptr, buffer->size); + buffer->ptr = xrealloc (buffer->ptr, buffer->size); } memcpy (buffer->ptr + buffer->write_idx, buf, len); buffer->write_idx += len; @@ -1102,7 +1103,7 @@ nextword (char *string, char **word) } } - *word = (char *) malloc (length + 1); + *word = xmalloc (length + 1); dst = *word; src = word_start; @@ -1216,11 +1217,11 @@ perform (void) dict_type * newentry (char *word) { - dict_type *new_d = (dict_type *) malloc (sizeof (dict_type)); + dict_type *new_d = xmalloc (sizeof (*new_d)); new_d->word = word; new_d->next = root; root = new_d; - new_d->code = (stinst_type *) malloc (sizeof (stinst_type)); + new_d->code = xmalloc (sizeof (*new_d->code)); new_d->code_length = 1; new_d->code_end = 0; return new_d; @@ -1232,9 +1233,8 @@ add_to_definition (dict_type *entry, stinst_type word) if (entry->code_end == entry->code_length) { entry->code_length += 2; - entry->code = - (stinst_type *) realloc ((char *) (entry->code), - entry->code_length * sizeof (stinst_type)); + entry->code = xrealloc (entry->code, + entry->code_length * sizeof (*entry->code)); } entry->code[entry->code_end] = word; @@ -1244,7 +1244,7 @@ add_to_definition (dict_type *entry, stinst_type word) void add_intrinsic (char *name, void (*func) (void)) { - dict_type *new_d = newentry (strdup (name)); + dict_type *new_d = newentry (xstrdup (name)); add_to_definition (new_d, func); add_to_definition (new_d, 0); } |