diff options
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | win/tclWinFCmd.c | 6 |
2 files changed, 11 insertions, 6 deletions
@@ -1,6 +1,11 @@ +2005-02-17 Jeff Hobbs <jeffh@ActiveState.com> + + * win/tclWinFCmd.c (TraverseWinTree): use wcslen on wchar, not + Tcl_UniCharLen. + 2005-02-16 Miguel Sofer <msofer@users.sf.net> - * /doc/variable.n: fix for [Bug 1124160], variables are detected + * doc/variable.n: fix for [Bug 1124160], variables are detected by [info vars] but not by [info locals]. 2005-02-11 Jeff Hobbs <jeffh@ActiveState.com> @@ -62,8 +67,8 @@ 2005-02-01 Don Porter <dgp@users.sourceforge.net> - * generic/tclExecute.c (TclCompEvalObj): Removed stray statement - left behind in prior code reorganization. + * generic/tclExecute.c (TclCompEvalObj): Removed stray statement + left behind in prior code reorganization. 2005-01-31 Don Porter <dgp@users.sourceforge.net> diff --git a/win/tclWinFCmd.c b/win/tclWinFCmd.c index 1821f8f..249b051 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.43 2004/10/06 16:37:18 dgp Exp $ + * RCS: @(#) $Id: tclWinFCmd.c,v 1.44 2005/02/17 18:34:36 hobbs Exp $ */ #include "tclWinInt.h" @@ -1331,7 +1331,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)) { @@ -1396,7 +1396,7 @@ TraverseWinTree( } result = TCL_ERROR; } - + return result; } |