From 5797180be8dc50f5539d7262da04e069b8c4a726 Mon Sep 17 00:00:00 2001 From: Miguel Sofer Date: Mon, 23 Jan 2006 11:18:52 +0000 Subject: * generic/tclStringObj.c: fixed incorrect handling of internal rep in Tcl_GetRange [Bug 1410553]. Thanks to twylite and Peter Spjuth. --- ChangeLog | 3 +++ generic/tclStringObj.c | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 87133a0..2ca6bd5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-01-23 Miguel Sofer + * generic/tclStringObj.c: fixed incorrect handling of internal rep + in Tcl_GetRange [Bug 1410553]. Thanks to twylite and Peter Spjuth. + * generic/tclProc.c: fixed args handling for precompiled bodies [Bug 1412695]; thanks to Uwe Traum. diff --git a/generic/tclStringObj.c b/generic/tclStringObj.c index fa8f949..a1c5bd3 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.51 2005/11/02 11:55:47 dkf Exp $ */ + * RCS: @(#) $Id: tclStringObj.c,v 1.52 2006/01/23 11:18:52 msofer Exp $ */ #include "tclInt.h" #include "tommath.h" @@ -636,7 +636,7 @@ Tcl_GetRange( stringPtr = GET_STRING(objPtr); } - if (stringPtr->numChars == objPtr->length) { + if (objPtr->bytes && (stringPtr->numChars == objPtr->length)) { char *str = Tcl_GetString(objPtr); /* -- cgit v0.12