summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--generic/tclInt.h4
-rw-r--r--generic/tclUtf.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index cb08a54..1631316 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -3175,9 +3175,9 @@ MODULE_SCOPE void TclRegisterCommandTypeName(
#if (TCL_UTF_MAX > 4) && (defined(__CYGWIN__) || defined(_WIN32))
MODULE_SCOPE int TclUtfToWChar(const char *src, WCHAR *chPtr);
MODULE_SCOPE char * TclWCharToUtfDString(const WCHAR *uniStr,
- int uniLength, Tcl_DString *dsPtr);
+ size_t uniLength, Tcl_DString *dsPtr);
MODULE_SCOPE WCHAR * TclUtfToWCharDString(const char *src,
- int length, Tcl_DString *dsPtr);
+ size_t length, Tcl_DString *dsPtr);
#else
# define TclUtfToWChar TclUtfToUniChar
# define TclWCharToUtfDString Tcl_UniCharToUtfDString
diff --git a/generic/tclUtf.c b/generic/tclUtf.c
index ef89a6a..e27e465 100644
--- a/generic/tclUtf.c
+++ b/generic/tclUtf.c
@@ -269,7 +269,7 @@ Tcl_UniCharToUtfDString(
char *
TclWCharToUtfDString(
const WCHAR *uniStr, /* WCHAR string to convert to UTF-8. */
- int uniLength, /* Length of WCHAR string in Tcl_UniChars
+ size_t uniLength, /* Length of WCHAR string in Tcl_UniChars
* (must be >= 0). */
Tcl_DString *dsPtr) /* UTF-8 representation of string is appended
* to this previously initialized DString. */
@@ -636,7 +636,7 @@ Tcl_UtfToUniCharDString(
WCHAR *
TclUtfToWCharDString(
const char *src, /* UTF-8 string to convert to Unicode. */
- int length, /* Length of UTF-8 string in bytes, or -1 for
+ size_t length, /* Length of UTF-8 string in bytes, or -1 for
* strlen(). */
Tcl_DString *dsPtr) /* Unicode representation of string is
* appended to this previously initialized
@@ -646,7 +646,7 @@ TclUtfToWCharDString(
const char *p, *end;
int oldLength;
- if (length < 0) {
+ if (length == TCL_AUTO_LENGTH) {
length = strlen(src);
}