diff options
| author | Dave Love | 1999-03-07 15:53:09 +0000 |
|---|---|---|
| committer | Dave Love | 1999-03-07 15:53:09 +0000 |
| commit | 68cfd853248a8aa859493bfe1fc8debddfbae3f9 (patch) | |
| tree | 517d40f0c866ce6c2a03f3d77ec8d20dc9483c0c /src | |
| parent | 0a51cf3d98e4d135f9fcd1e9f2975c6d74643a73 (diff) | |
| download | emacs-68cfd853248a8aa859493bfe1fc8debddfbae3f9.tar.gz emacs-68cfd853248a8aa859493bfe1fc8debddfbae3f9.zip | |
(Finsert_file_contents): Use xfree.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index f063c956c01..17b83f63735 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -3766,7 +3766,7 @@ actually used.") | |||
| 3766 | 3766 | ||
| 3767 | if (lseek (fd, XINT (beg), 0) < 0) | 3767 | if (lseek (fd, XINT (beg), 0) < 0) |
| 3768 | { | 3768 | { |
| 3769 | free (conversion_buffer); | 3769 | xfree (conversion_buffer); |
| 3770 | report_file_error ("Setting file position", | 3770 | report_file_error ("Setting file position", |
| 3771 | Fcons (orig_filename, Qnil)); | 3771 | Fcons (orig_filename, Qnil)); |
| 3772 | } | 3772 | } |