summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorericm <ericm@noemail.net>2000-03-31 19:39:40 (GMT)
committerericm <ericm@noemail.net>2000-03-31 19:39:40 (GMT)
commitfc921deac89ed9f6bb647030b22a4df2fb427ad7 (patch)
tree2d64c5f88a5d280114bdb5ec4b8455753a3a5384 /ChangeLog
parent81b94d11359675d289a7493c128e5511c9f18815 (diff)
downloadtcl-fc921deac89ed9f6bb647030b22a4df2fb427ad7.zip
tcl-fc921deac89ed9f6bb647030b22a4df2fb427ad7.tar.gz
tcl-fc921deac89ed9f6bb647030b22a4df2fb427ad7.tar.bz2
* generic/tclGet.c (Tcl_GetDouble): Added additional conditions to
error test (previously only errno was checked, but the return value of strtod() should be checked as well). [Bug: 4118]. * tests/exec.test: Added test for proper conversion of UTF data when used with "<< $dataWithUTF" on exec's. * unix/tclUnixPipe.c (TclpCreateTempFile): Added Tcl_UtfToExternalDString call, so that if there is UTF content in the string it will be properly converted to the system encoding before being written [Bug: 4030]. (TclpCreateTempFile): Added a check on the return value of tmpnam; some systems (Linux, for example) will start to return NULL after tmpnam has been called TMP_MAX times; not checking for this can have bad results (overwriting temp files, core dumps, etc.) FossilOrigin-Name: 27f457dd13bd11383a15651c5e9c2bcbc947599b
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog18
1 files changed, 18 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7dbde74..73ce054 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,21 @@
+2000-03-31 Eric Melski <ericm@scriptics.com>
+
+ * generic/tclGet.c (Tcl_GetDouble): Added additional conditions to
+ error test (previously only errno was checked, but the return
+ value of strtod() should be checked as well). [Bug: 4118].
+
+ * tests/exec.test: Added test for proper conversion of UTF data
+ when used with "<< $dataWithUTF" on exec's.
+
+ * unix/tclUnixPipe.c (TclpCreateTempFile): Added
+ Tcl_UtfToExternalDString call, so that if there is UTF content in
+ the string it will be properly converted to the system encoding
+ before being written [Bug: 4030].
+ (TclpCreateTempFile): Added a check on the return value of tmpnam;
+ some systems (Linux, for example) will start to return NULL after
+ tmpnam has been called TMP_MAX times; not checking for this can
+ have bad results (overwriting temp files, core dumps, etc.)
+
2000-03-30 Jeff Hobbs <hobbs@scriptics.com>
* generic/tclBasic.c (Tcl_DeleteCommandFromToken): Added comments