From dfec115d39b5adbfc1ab38de1b52a06cb052831a Mon Sep 17 00:00:00 2001 From: andreas_kupries Date: Wed, 22 Apr 2009 17:21:10 +0000 Subject: * generic/tclStringObj.c (UpdateStringOfString): Added cast to fix signed/unsigned mismatch breaking win32 symbol/debug build. --- ChangeLog | 5 +++++ generic/tclStringObj.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 23df02f..12f4ef3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-04-22 Andreas Kupries + + * generic/tclStringObj.c (UpdateStringOfString): Added cast to fix + signed/unsigned mismatch breaking win32 symbol/debug build. + 2009-04-15 Don Porter * generic/tclStringObj.c: AppendUnicodeToUnicodeRep failed diff --git a/generic/tclStringObj.c b/generic/tclStringObj.c index e6118c6..19f8723 100644 --- a/generic/tclStringObj.c +++ b/generic/tclStringObj.c @@ -33,7 +33,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStringObj.c,v 1.32.2.11 2009/04/15 19:22:44 das Exp $ */ + * RCS: @(#) $Id: tclStringObj.c,v 1.32.2.12 2009/04/22 17:21:10 andreas_kupries Exp $ */ #include "tclInt.h" @@ -1929,7 +1929,7 @@ UpdateStringOfString(objPtr) */ if (stringPtr->numChars <= INT_MAX/TCL_UTF_MAX - && stringPtr->allocated >= stringPtr->numChars * TCL_UTF_MAX) { + && stringPtr->allocated >= (size_t) (stringPtr->numChars * TCL_UTF_MAX)) { goto copyBytes; } -- cgit v0.12