diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2006-01-23 11:18:52 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2006-01-23 11:18:52 (GMT) |
commit | 5797180be8dc50f5539d7262da04e069b8c4a726 (patch) | |
tree | 052fd6689293161622275ecc754244534721d4ed /generic/tclStringObj.c | |
parent | d638f4a874b43bdeb4154f5138d42108604d855f (diff) | |
download | tcl-5797180be8dc50f5539d7262da04e069b8c4a726.zip tcl-5797180be8dc50f5539d7262da04e069b8c4a726.tar.gz tcl-5797180be8dc50f5539d7262da04e069b8c4a726.tar.bz2 |
* generic/tclStringObj.c: fixed incorrect handling of internal rep
in Tcl_GetRange [Bug 1410553]. Thanks to twylite and Peter Spjuth.
Diffstat (limited to 'generic/tclStringObj.c')
-rw-r--r-- | generic/tclStringObj.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); /* |