diff options
| author | Dave Love <fx@gnu.org> | 1999-08-18 13:07:21 +0000 |
|---|---|---|
| committer | Dave Love <fx@gnu.org> | 1999-08-18 13:07:21 +0000 |
| commit | a36837e471ec6ab2e0541cc79b03c38e7f05c02a (patch) | |
| tree | 8886561bebf00c3e0bd0542904aeea9ca20f430e /src | |
| parent | 495fa05e41e1d9455b6f9e218d35a81b252e9542 (diff) | |
| download | emacs-a36837e471ec6ab2e0541cc79b03c38e7f05c02a.tar.gz | |
(Finsert_file_contents): Use xfree.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c index a55e07973cc..04c12858e4c 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -3843,7 +3843,7 @@ actually used.") if (how_much < 0) { - free (conversion_buffer); + xfree (conversion_buffer); if (how_much == -1) error ("IO error reading %s: %s", @@ -3865,7 +3865,7 @@ actually used.") if (bufpos == inserted) { - free (conversion_buffer); + xfree (conversion_buffer); close (fd); specpdl_ptr--; /* Truncate the buffer to the size of the file. */ |
