diff src/ChangeLog @ 5781:0853e1ec8529

Use alloca_{rawbytes,ibytes} in #'copy-file, #'insert-file-contents-internal src/ChangeLog addition: 2014-01-20 Aidan Kehoe <kehoea@parhasard.net> * fileio.c (Fcopy_file, Finsert_file_contents_internal): Use alloca_{rawbytes,ibytes} here instead of the implicit alloca on the stack; doesn't change where the buffers are allocated for these two functions, but does mean that decisions about alloca vs. malloc based on buffer size are made in the same place (ultimately, the ALLOCA() macro).
author Aidan Kehoe <kehoea@parhasard.net>
date Mon, 20 Jan 2014 17:53:07 +0000
parents e9d0228c5671
children 7277cf461612
line wrap: on
line diff
--- a/src/ChangeLog	Sat Jan 18 17:40:41 2014 +0100
+++ b/src/ChangeLog	Mon Jan 20 17:53:07 2014 +0000
@@ -1,3 +1,12 @@
+2014-01-20  Aidan Kehoe  <kehoea@parhasard.net>
+
+	* fileio.c (Fcopy_file, Finsert_file_contents_internal):
+	Use alloca_{rawbytes,ibytes} here instead of the implicit alloca
+	on the stack; doesn't change where the buffers are allocated for
+	these two functions, but does mean that decisions about alloca
+	vs. malloc based on buffer size are made in the same place
+	(ultimately, the ALLOCA() macro).
+
 2014-01-16  Aidan Kehoe  <kehoea@parhasard.net>
 
 	* fileio.c (READ_BUF_SIZE):