diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-12-15 01:01:51 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-12-15 01:01:51 +0000 |
commit | 7fd5097f9fb26871e9f0b329f1cf5554495ed589 (patch) | |
tree | 20b4de6e7953169d2402aff4e158b475b5726e67 /gdb/tui | |
parent | eac388f33554805a5765a2836926311f77cd8d79 (diff) | |
download | gdb-7fd5097f9fb26871e9f0b329f1cf5554495ed589.tar.gz |
Replace free() with xfree().
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-file.c | 4 | ||||
-rw-r--r-- | gdb/tui/tui.c | 4 | ||||
-rw-r--r-- | gdb/tui/tuiData.c | 2 | ||||
-rw-r--r-- | gdb/tui/tuiLayout.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/gdb/tui/tui-file.c b/gdb/tui/tui-file.c index 34591dece84..bf3574bdbb0 100644 --- a/gdb/tui/tui-file.c +++ b/gdb/tui/tui-file.c @@ -89,9 +89,9 @@ tui_file_delete (struct ui_file *file) if ((tmpstream->ts_streamtype == astring) && (tmpstream->ts_strbuf != NULL)) { - free (tmpstream->ts_strbuf); + xfree (tmpstream->ts_strbuf); } - free (tmpstream); + xfree (tmpstream); } struct ui_file * 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); diff --git a/gdb/tui/tuiData.c b/gdb/tui/tuiData.c index 50fa4a75c11..d9b7b99241a 100644 --- a/gdb/tui/tuiData.c +++ b/gdb/tui/tuiData.c @@ -1378,7 +1378,7 @@ freeWindow (winInfo) winInfo->generic.handle = (WINDOW *) NULL; freeWinContent (&winInfo->generic); } - free (winInfo); + xfree (winInfo); return; } /* freeWindow */ diff --git a/gdb/tui/tuiLayout.c b/gdb/tui/tuiLayout.c index f394205b7cd..8a6648a310f 100644 --- a/gdb/tui/tuiLayout.c +++ b/gdb/tui/tuiLayout.c @@ -603,7 +603,7 @@ _tuiSetLayoutTo (layoutName) newLayout = _prevLayout (); else status = TUI_FAILURE; - free (bufPtr); + xfree (bufPtr); tuiSetLayout (newLayout, dpyType); } |