* xcoff_symfile_finish: Replace last call to xmfree by call
authorJoel Brobecker <brobecker@gnat.com>
Tue, 10 Aug 2004 23:48:29 +0000 (23:48 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Tue, 10 Aug 2004 23:48:29 +0000 (23:48 +0000)
        to xfree.

gdb/ChangeLog
gdb/xcoffread.c

index 973ca13..d79ae86 100644 (file)
@@ -1,3 +1,8 @@
+2004-08-10  Joel Brobecker  <brobecker@gnat.com>
+
+       * xcoff_symfile_finish: Replace last call to xmfree by call
+       to xfree.
+
 2004-08-10  Andrew Cagney  <cagney@gnu.org>
 
        * main.c (captured_main): Delete call to init_malloc.
index e92ab02..2f1bd23 100644 (file)
@@ -1858,7 +1858,7 @@ xcoff_symfile_finish (struct objfile *objfile)
 {
   if (objfile->sym_private != NULL)
     {
-      xmfree (objfile->md, objfile->sym_private);
+      xfree (objfile->sym_private);
     }
 
   /* Start with a fresh include table for the next objfile.  */