diff options
author | Fred Fish <fnf@specifix.com> | 1996-02-12 21:03:12 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1996-02-12 21:03:12 +0000 |
commit | 6405302d013c9afbbb1fe3390831e9b7879c4d59 (patch) | |
tree | 4b6ab4e2ebd3ab59cc0a4b35d6d904a8c88ea32c /gdb/ChangeLog | |
parent | 15ed5f2c3fc4625bba07fb731e7f281286c97fd0 (diff) | |
download | gdb-6405302d013c9afbbb1fe3390831e9b7879c4d59.zip gdb-6405302d013c9afbbb1fe3390831e9b7879c4d59.tar.gz gdb-6405302d013c9afbbb1fe3390831e9b7879c4d59.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 97c12b9..505166d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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 |