summaryrefslogtreecommitdiff
path: root/gdb/kod.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2000-12-15 01:01:51 +0000
committerKevin Buettner <kevinb@redhat.com>2000-12-15 01:01:51 +0000
commitb8c9b27d1e133d46199734ca1f047af8bb2d3314 (patch)
tree1aa002791f0e97bfc48c64222199e6d9f9e5eb53 /gdb/kod.c
parent6fa957a9b9408297206fb88e7c773931760f0528 (diff)
downloadbinutils-gdb-b8c9b27d1e133d46199734ca1f047af8bb2d3314.tar.gz
Replace free() with xfree().
Diffstat (limited to 'gdb/kod.c')
-rw-r--r--gdb/kod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/kod.c b/gdb/kod.c
index d2687d7ac22..6aa6769d914 100644
--- a/gdb/kod.c
+++ b/gdb/kod.c
@@ -143,7 +143,7 @@ kod_set_os (char *arg, int from_tty, struct cmd_list_element *command)
if (old_operating_system)
{
delete_cmd (old_operating_system, &infolist);
- free (old_operating_system);
+ xfree (old_operating_system);
}
old_operating_system = xstrdup (operating_system);
@@ -175,7 +175,7 @@ kod_set_os (char *arg, int from_tty, struct cmd_list_element *command)
p = "Unknown KOD library";
printf_filtered ("%s - %s\n", operating_system, p);
- free (kodlib);
+ xfree (kodlib);
}
}