Replace free() with xfree().

This commit is contained in:
Kevin Buettner
2000-12-15 01:01:51 +00:00
parent 6fa957a9b9
commit b8c9b27d1e
128 changed files with 545 additions and 532 deletions

View File

@@ -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);