summaryrefslogtreecommitdiff
path: root/gdb/dbxread.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-12-02 22:38:23 +0000
committerAndrew Cagney <cagney@redhat.com>2001-12-02 22:38:23 +0000
commit8c28a49f9bf01eed8e19579be9691db956db6e09 (patch)
treec0d9493667bc44de8b95575e676d0e9e1525f1b0 /gdb/dbxread.c
parentc57328ec083c97a3f31c6cbaeb1f9781421c26ab (diff)
downloadgdb-8c28a49f9bf01eed8e19579be9691db956db6e09.tar.gz
mfree() -> xmfree().
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r--gdb/dbxread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c
index 08ff814e43a..61bd930ed0a 100644
--- a/gdb/dbxread.c
+++ b/gdb/dbxread.c
@@ -788,7 +788,7 @@ dbx_symfile_finish (struct objfile *objfile)
}
xfree (hfiles);
}
- mfree (objfile->md, objfile->sym_stab_info);
+ xmfree (objfile->md, objfile->sym_stab_info);
}
free_header_files ();
}
@@ -1051,7 +1051,7 @@ find_corresponding_bincl_psymtab (char *name, int instance)
static void
free_bincl_list (struct objfile *objfile)
{
- mfree (objfile->md, (PTR) bincl_list);
+ xmfree (objfile->md, (PTR) bincl_list);
bincls_allocated = 0;
}