summaryrefslogtreecommitdiffstats
path: root/win/tclWinPipe.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-08-30 13:07:10 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-08-30 13:07:10 (GMT)
commit5eb346e0d25b2ae446797b610058911dc3b65a63 (patch)
tree4c13a17c50a6283243312fe0ed36e17d16d4dfc9 /win/tclWinPipe.c
parent6eb9e4367cece63b5ba975098c2d3ad41915a0fa (diff)
parentd84492f3906d20d05b547a4fa90286fe0a59bb37 (diff)
downloadtcl-5eb346e0d25b2ae446797b610058911dc3b65a63.zip
tcl-5eb346e0d25b2ae446797b610058911dc3b65a63.tar.gz
tcl-5eb346e0d25b2ae446797b610058911dc3b65a63.tar.bz2
Don't ever allow UTF-8 sequences of more than 4 characters to be generated or parsed, even when TCL_UTF_MAX>4: According to current Unicode standard, a byte string of >4 characters can never form a single UTF-8 character.
And a few minor micro-optimizations related to UTF-8 handling.
Diffstat (limited to 'win/tclWinPipe.c')
-rw-r--r--win/tclWinPipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c
index 382addd..4666deb 100644
--- a/win/tclWinPipe.c
+++ b/win/tclWinPipe.c
@@ -1337,7 +1337,7 @@ ApplicationType(
Tcl_DStringFree(&ds);
ext = strrchr(fullName, '.');
- if ((ext != NULL) &&
+ if ((ext != NULL) &&
(strcasecmp(ext, ".cmd") == 0 || strcasecmp(ext, ".bat") == 0)) {
applType = APPL_DOS;
break;