summaryrefslogtreecommitdiffstats
path: root/win/tclWinFCmd.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2005-02-17 18:31:47 (GMT)
committerhobbs <hobbs>2005-02-17 18:31:47 (GMT)
commita5b53a8dd972652d3f80cd6041f2c702bbc9b49b (patch)
tree151e9345cf5e1928f66f36a9649fa2c9fea16b98 /win/tclWinFCmd.c
parenta277081417ca7ce77a114fabd3b2f658afb3005b (diff)
downloadtcl-a5b53a8dd972652d3f80cd6041f2c702bbc9b49b.zip
tcl-a5b53a8dd972652d3f80cd6041f2c702bbc9b49b.tar.gz
tcl-a5b53a8dd972652d3f80cd6041f2c702bbc9b49b.tar.bz2
* win/tclWinFCmd.c (TraverseWinTree): use wcslen on wchar, not
Tcl_UniCharLen.
Diffstat (limited to 'win/tclWinFCmd.c')
-rw-r--r--win/tclWinFCmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinFCmd.c b/win/tclWinFCmd.c
index e8033f9..29094c4 100644
--- a/win/tclWinFCmd.c
+++ b/win/tclWinFCmd.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinFCmd.c,v 1.35.2.2 2004/06/21 22:07:32 mdejong Exp $
+ * RCS: @(#) $Id: tclWinFCmd.c,v 1.35.2.3 2005/02/17 18:31:54 hobbs Exp $
*/
#include "tclWinInt.h"
@@ -1291,7 +1291,7 @@ TraverseWinTree(
}
}
nativeName = (TCHAR *) data.w.cFileName;
- len = Tcl_UniCharLen(data.w.cFileName) * sizeof(WCHAR);
+ len = wcslen(data.w.cFileName) * sizeof(WCHAR);
} else {
if ((strcmp(data.a.cFileName, ".") == 0)
|| (strcmp(data.a.cFileName, "..") == 0)) {
@@ -1356,7 +1356,7 @@ TraverseWinTree(
}
result = TCL_ERROR;
}
-
+
return result;
}