aboutsummaryrefslogtreecommitdiff
path: root/gdb/mipsread.c
diff options
context:
space:
mode:
authorPeter Schauer <Peter.Schauer@mytum.de>2001-02-10 11:12:06 +0000
committerPeter Schauer <Peter.Schauer@mytum.de>2001-02-10 11:12:06 +0000
commit4b2e486790b383f1c11a60c97deb2c23456d083a (patch)
tree463171b9e693a60fdd6dfddcdc18f25d88b361e9 /gdb/mipsread.c
parentd737ece6da5e4075af7dfb98cd8e2d5bf6e37c3c (diff)
downloadfsf-binutils-gdb-4b2e486790b383f1c11a60c97deb2c23456d083a.zip
fsf-binutils-gdb-4b2e486790b383f1c11a60c97deb2c23456d083a.tar.gz
fsf-binutils-gdb-4b2e486790b383f1c11a60c97deb2c23456d083a.tar.bz2
* mipsread.c (read_alphacoff_dynamic_symtab): Replace alloca calls
with xmalloc calls and cleanups.
Diffstat (limited to 'gdb/mipsread.c')
-rw-r--r--gdb/mipsread.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/gdb/mipsread.c b/gdb/mipsread.c
index 1a1c668..3564821 100644
--- a/gdb/mipsread.c
+++ b/gdb/mipsread.c
@@ -1,5 +1,5 @@
/* Read a symbol table in MIPS' format (Third-Eye).
- Copyright 1986, 87, 89, 90, 91, 92, 93, 94, 95, 96, 1998
+ Copyright 1986, 87, 89, 90, 91, 92, 93, 94, 95, 96, 1998, 2001
Free Software Foundation, Inc.
Contributed by Alessandro Forin (af@cs.cmu.edu) at CMU. Major work
by Per Bothner, John Gilmore and Ian Lance Taylor at Cygnus Support.
@@ -243,6 +243,7 @@ read_alphacoff_dynamic_symtab (struct section_offsets *section_offsets,
int got_entry_size = 8;
int dt_mips_local_gotno = -1;
int dt_mips_gotsym = -1;
+ struct cleanup *cleanups;
/* We currently only know how to handle alpha dynamic symbols. */
@@ -262,10 +263,14 @@ read_alphacoff_dynamic_symtab (struct section_offsets *section_offsets,
str_secsize = bfd_get_section_size_before_reloc (si.str_sect);
dyninfo_secsize = bfd_get_section_size_before_reloc (si.dyninfo_sect);
got_secsize = bfd_get_section_size_before_reloc (si.got_sect);
- sym_secptr = alloca (sym_secsize);
- str_secptr = alloca (str_secsize);
- dyninfo_secptr = alloca (dyninfo_secsize);
- got_secptr = alloca (got_secsize);
+ sym_secptr = xmalloc (sym_secsize);
+ cleanups = make_cleanup (free, sym_secptr);
+ str_secptr = xmalloc (str_secsize);
+ make_cleanup (free, str_secptr);
+ dyninfo_secptr = xmalloc (dyninfo_secsize);
+ make_cleanup (free, dyninfo_secptr);
+ got_secptr = xmalloc (got_secsize);
+ make_cleanup (free, got_secptr);
if (!bfd_get_section_contents (abfd, si.sym_sect, sym_secptr,
(file_ptr) 0, sym_secsize))
@@ -418,6 +423,8 @@ read_alphacoff_dynamic_symtab (struct section_offsets *section_offsets,
prim_record_minimal_symbol (name, sym_value, ms_type, objfile);
}
+
+ do_cleanups (cleanups);
}
/* Initialization */