Mercurial > emacs
diff src/fileio.c @ 25321:2ad9fa0386b6
(Finsert_file_contents): Use xfree.
| author | Dave Love <fx@gnu.org> |
|---|---|
| date | Wed, 18 Aug 1999 13:07:21 +0000 |
| parents | c79dc141ef5a |
| children | 5c1dc7109bb8 |
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. */
