diff options
Diffstat (limited to 'gdb/kod.c')
-rw-r--r-- | gdb/kod.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } } |