diff options
author | dgp <dgp@users.sourceforge.net> | 2008-08-22 17:20:35 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-08-22 17:20:35 (GMT) |
commit | 1b1450fb684c5c1af4400d71a16a343d832d1dcd (patch) | |
tree | 041051f0aa1f76b38ecbe089c40c13118e65b907 /generic | |
parent | 6b9d9ed01ec1bd26181bacf43086670a6c545242 (diff) | |
download | tcl-1b1450fb684c5c1af4400d71a16a343d832d1dcd.zip tcl-1b1450fb684c5c1af4400d71a16a343d832d1dcd.tar.gz tcl-1b1450fb684c5c1af4400d71a16a343d832d1dcd.tar.bz2 |
* generic/tclUtil.c (TclReToGlob): Added missing set of the
*exactPtr value to really fix [Bug 2065115].
* tests/regexpComp.test: Correct duplicate test names.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclUtil.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclUtil.c b/generic/tclUtil.c index ec0f2ff..3b59171 100644 --- a/generic/tclUtil.c +++ b/generic/tclUtil.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUtil.c,v 1.97.2.3 2008/08/21 23:42:22 hobbs Exp $ + * RCS: @(#) $Id: tclUtil.c,v 1.97.2.4 2008/08/22 17:20:37 dgp Exp $ */ #include "tclInt.h" @@ -3300,6 +3300,9 @@ TclReToGlob( } *dsStr++ = '*'; Tcl_DStringSetLength(dsPtr, dsStr - dsStrStart); + if (exactPtr) { + *exactPtr = 0; + } return TCL_OK; } |