summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2010-03-20 15:39:46 (GMT)
committerdkf <dkf@noemail.net>2010-03-20 15:39:46 (GMT)
commitfd57d2c61d1a5e755355918ceddbbadcafc9d5db (patch)
tree916de8cf08cd2e2b07d6c7faf71f6d89064d6233 /ChangeLog
parent4adf9a350a2a2ee4101dd9447335b799e93220dc (diff)
downloadtcl-fd57d2c61d1a5e755355918ceddbbadcafc9d5db.zip
tcl-fd57d2c61d1a5e755355918ceddbbadcafc9d5db.tar.gz
tcl-fd57d2c61d1a5e755355918ceddbbadcafc9d5db.tar.bz2
Allow [fcopy] to move more than 2GB per call. Frederic Bonnet identified issue.
FossilOrigin-Name: a2e969549f11650b54c316e8525b5dfafa3ce879
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog14
1 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9e2208b..76c0438 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,18 @@
+2010-03-20 Donal K. Fellows <dkf@users.sf.net>
+
+ * generic/tclIOCmd.c (Tcl_FcopyObjCmd): Lift the restriction
+ * generic/tclIO.c (TclCopyChannel, CopyData): on the [fcopy] command
+ * generic/tclIO.h (CopyState): that forced it to only
+ copy up to 2GB per script-level callback. Now it is anything that can
+ fit in a (signed) 64-bit integer. Problem identified by Frederic
+ Bonnet on comp.lang.tcl. Note that individual low-level reads and
+ writes are still smaller as the optimal buffer size is smaller.
+
2010-03-20 Jan Nijtmans <nijtmans@users.sf.net>
- * win/stub16.c Don't hide that we use the ASCII API here.
+ * win/stub16.c: Don't hide that we use the ASCII API here.
(does someone still use that?)
- * win/tclWinPipe.c 2 unnecessary type casts.
+ * win/tclWinPipe.c: 2 unnecessary type casts.
2010-03-19 Donal K. Fellows <dkf@users.sf.net>