diff options
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 28b0d6b..e537744 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -748,7 +748,7 @@ dbx_symfile_finish (struct objfile *objfile) } xfree (hfiles); } - xmfree (objfile->md, objfile->sym_stab_info); + xfree (objfile->sym_stab_info); } free_header_files (); } @@ -937,7 +937,7 @@ find_corresponding_bincl_psymtab (char *name, int instance) static void free_bincl_list (struct objfile *objfile) { - xmfree (objfile->md, bincl_list); + xfree (bincl_list); bincls_allocated = 0; } |