diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-12-15 01:01:51 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-12-15 01:01:51 +0000 |
commit | b8c9b27d1e133d46199734ca1f047af8bb2d3314 (patch) | |
tree | 1aa002791f0e97bfc48c64222199e6d9f9e5eb53 /gdb/dbxread.c | |
parent | 6fa957a9b9408297206fb88e7c773931760f0528 (diff) | |
download | fsf-binutils-gdb-b8c9b27d1e133d46199734ca1f047af8bb2d3314.zip fsf-binutils-gdb-b8c9b27d1e133d46199734ca1f047af8bb2d3314.tar.gz fsf-binutils-gdb-b8c9b27d1e133d46199734ca1f047af8bb2d3314.tar.bz2 |
Replace free() with xfree().
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r-- | gdb/dbxread.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c index c8f9cfe..071be76 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -323,7 +323,7 @@ free_header_files (void) { if (this_object_header_files) { - free ((PTR) this_object_header_files); + xfree (this_object_header_files); this_object_header_files = NULL; } n_allocated_this_object_header_files = 0; @@ -767,10 +767,10 @@ dbx_symfile_finish (struct objfile *objfile) while (--i >= 0) { - free (hfiles[i].name); - free (hfiles[i].vector); + xfree (hfiles[i].name); + xfree (hfiles[i].vector); } - free ((PTR) hfiles); + xfree (hfiles); } mfree (objfile->md, objfile->sym_stab_info); } @@ -1093,7 +1093,7 @@ read_dbx_dynamic_symtab (struct objfile *objfile) return; dynsyms = (asymbol **) xmalloc (dynsym_size); - back_to = make_cleanup (free, dynsyms); + back_to = make_cleanup (xfree, dynsyms); dynsym_count = bfd_canonicalize_dynamic_symtab (abfd, dynsyms); if (dynsym_count < 0) @@ -1156,7 +1156,7 @@ read_dbx_dynamic_symtab (struct objfile *objfile) } dynrels = (arelent **) xmalloc (dynrel_size); - make_cleanup (free, dynrels); + make_cleanup (xfree, dynrels); dynrel_count = bfd_canonicalize_dynamic_reloc (abfd, dynrels, dynsyms); if (dynrel_count < 0) |