]> git.eshelyaron.com Git - emacs.git/commit
Fix insert-file-contents on /proc files
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 13 Feb 2023 20:32:11 +0000 (12:32 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 13 Feb 2023 20:32:59 +0000 (12:32 -0800)
commitb950b46f514989442fdd9937a0e96d53a3affa88
treecf02f481ec03906bdc17caa5baea265eeee28280
parentbae5fa5d9a8ef8c41fbb3408eea441a2ee14d1db
Fix insert-file-contents on /proc files

This should fix Bug#9800 (2011-10-19).
* src/fileio.c (Finsert_file_contents):
Do not trust st_size even on regular files, as the file might
be a Linux /proc file, or it might be growing.
Instead, always read to EOF when END is nil.
src/fileio.c