Mercurial > emacs
changeset 25321:2ad9fa0386b6
(Finsert_file_contents): Use xfree.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 18 Aug 1999 13:07:21 +0000 |
parents | 107c9221181c |
children | 824b89fca192 |
files | src/fileio.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fileio.c Wed Aug 18 12:04:53 1999 +0000 +++ b/src/fileio.c Wed Aug 18 13:07:21 1999 +0000 @@ -3843,7 +3843,7 @@ if (how_much < 0) { - free (conversion_buffer); + xfree (conversion_buffer); if (how_much == -1) error ("IO error reading %s: %s", @@ -3865,7 +3865,7 @@ if (bufpos == inserted) { - free (conversion_buffer); + xfree (conversion_buffer); close (fd); specpdl_ptr--; /* Truncate the buffer to the size of the file. */