summaryrefslogtreecommitdiff
path: root/gdb/tui/tui.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/tui/tui.c')
-rw-r--r--gdb/tui/tui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c
index 9f831193c6b..b38f67d8f7a 100644
--- a/gdb/tui/tui.c
+++ b/gdb/tui/tui.c
@@ -241,7 +241,7 @@ tuiFree (ptr)
{
if (ptr != (char *) NULL)
{
- free (ptr);
+ xfree (ptr);
}
return;
@@ -626,7 +626,7 @@ strcat_to_buf_with_fmt (va_alist)
format = va_arg (args, char *);
#endif
vasprintf (&linebuffer, format, args);
- old_cleanups = make_cleanup (free, linebuffer);
+ old_cleanups = make_cleanup (xfree, linebuffer);
strcat_to_buf (buf, bufLen, linebuffer);
do_cleanups (old_cleanups);
va_end (args);