summaryrefslogtreecommitdiffstats
path: root/generic/tclFileName.c
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2005-03-15 22:10:58 (GMT)
committervincentdarley <vincentdarley>2005-03-15 22:10:58 (GMT)
commit06cfdf8d7716b24e5778cbeaef05d8756622d010 (patch)
tree2fe8a1bd9a312d6eba4e6df6f81d6302a446b0c2 /generic/tclFileName.c
parent04c179bb5098db811c7e1fc19fb7c8dbb5c03d56 (diff)
downloadtcl-06cfdf8d7716b24e5778cbeaef05d8756622d010.zip
tcl-06cfdf8d7716b24e5778cbeaef05d8756622d010.tar.gz
tcl-06cfdf8d7716b24e5778cbeaef05d8756622d010.tar.bz2
more tests and a fix to bug 1158199
Diffstat (limited to 'generic/tclFileName.c')
-rw-r--r--generic/tclFileName.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/generic/tclFileName.c b/generic/tclFileName.c
index 5ccd455..67d606d 100644
--- a/generic/tclFileName.c
+++ b/generic/tclFileName.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclFileName.c,v 1.40.2.9 2005/03/15 18:41:32 vincentdarley Exp $
+ * RCS: @(#) $Id: tclFileName.c,v 1.40.2.10 2005/03/15 22:10:58 vincentdarley Exp $
*/
#include "tclInt.h"
@@ -271,17 +271,20 @@ ExtractWinRoot(path, resultPtr, offset, typePtr)
}
} else if ((path[0] == 'p' || path[0] == 'P')
&& (path[1] == 'r' || path[1] == 'R')
- && (path[2] == 'n' || path[2] == 'N')) {
+ && (path[2] == 'n' || path[2] == 'N')
+ && path[3] == '\0') {
/* Have match for 'prn' */
abs = 3;
} else if ((path[0] == 'n' || path[0] == 'N')
&& (path[1] == 'u' || path[1] == 'U')
- && (path[2] == 'l' || path[2] == 'L')) {
+ && (path[2] == 'l' || path[2] == 'L')
+ && path[3] == '\0') {
/* Have match for 'nul' */
abs = 3;
} else if ((path[0] == 'a' || path[0] == 'A')
&& (path[1] == 'u' || path[1] == 'U')
- && (path[2] == 'x' || path[2] == 'X')) {
+ && (path[2] == 'x' || path[2] == 'X')
+ && path[3] == '\0') {
/* Have match for 'aux' */
abs = 3;
}