From: Joel Brobecker Date: Tue, 10 Aug 2004 23:48:29 +0000 (+0000) Subject: * xcoff_symfile_finish: Replace last call to xmfree by call X-Git-Tag: csl-arm-2004-q3~532 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3bcc18faa9316232c786da8915f232bcf443ad56;p=external%2Fbinutils.git * xcoff_symfile_finish: Replace last call to xmfree by call to xfree. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 973ca13..d79ae86 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2004-08-10 Joel Brobecker + + * xcoff_symfile_finish: Replace last call to xmfree by call + to xfree. + 2004-08-10 Andrew Cagney * main.c (captured_main): Delete call to init_malloc. diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index e92ab02..2f1bd23 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -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. */