diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-12-02 22:38:23 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-12-02 22:38:23 +0000 |
commit | aac7f4eaf285cfa05a09ce0750f3f828ba0b0f01 (patch) | |
tree | eb4b35b0031b389cdb25e2d2ed735f4fb663d11e /gdb/dbxread.c | |
parent | 4c17829508ff57f839698eb08f6adf8fdf2526a1 (diff) | |
download | gdb-aac7f4eaf285cfa05a09ce0750f3f828ba0b0f01.zip gdb-aac7f4eaf285cfa05a09ce0750f3f828ba0b0f01.tar.gz gdb-aac7f4eaf285cfa05a09ce0750f3f828ba0b0f01.tar.bz2 |
mfree() -> xmfree().
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r-- | gdb/dbxread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c index 08ff814..61bd930 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; } |