From 7fd5097f9fb26871e9f0b329f1cf5554495ed589 Mon Sep 17 00:00:00 2001 From: Kevin Buettner Date: Fri, 15 Dec 2000 01:01:51 +0000 Subject: Replace free() with xfree(). --- gdb/symmisc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gdb/symmisc.c') diff --git a/gdb/symmisc.c b/gdb/symmisc.c index 21bc3d41397..5add35afbae 100644 --- a/gdb/symmisc.c +++ b/gdb/symmisc.c @@ -524,7 +524,7 @@ Arguments missing: an output file name and an optional symbol file name"); } filename = tilde_expand (filename); - make_cleanup (free, filename); + make_cleanup (xfree, filename); outfile = gdb_fopen (filename, FOPEN_WT); if (outfile == 0) @@ -758,7 +758,7 @@ maintenance_print_psymbols (char *args, int from_tty) } filename = tilde_expand (filename); - make_cleanup (free, filename); + make_cleanup (xfree, filename); outfile = gdb_fopen (filename, FOPEN_WT); if (outfile == 0) @@ -901,7 +901,7 @@ maintenance_print_msymbols (char *args, int from_tty) } filename = tilde_expand (filename); - make_cleanup (free, filename); + make_cleanup (xfree, filename); outfile = gdb_fopen (filename, FOPEN_WT); if (outfile == 0) -- cgit v1.2.1