From b8c9b27d1e133d46199734ca1f047af8bb2d3314 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/valops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/valops.c') diff --git a/gdb/valops.c b/gdb/valops.c index 9183984..835349c 100644 --- a/gdb/valops.c +++ b/gdb/valops.c @@ -2788,7 +2788,7 @@ find_overload_match (struct type **arg_types, int nargs, char *name, int method, default: break; } - free (parm_types); + xfree (parm_types); if (overload_debug) { if (method) @@ -2860,7 +2860,7 @@ find_overload_match (struct type **arg_types, int nargs, char *name, int method, else { *symp = oload_syms[oload_champ]; - free (func_name); + xfree (func_name); } return oload_incompatible ? 100 : (oload_non_standard ? 10 : 0); -- cgit v1.1