summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-03-08 16:34:22 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-03-08 16:34:22 (GMT)
commit9c04301ef6c66c0166de0a8d94972ac3deacded6 (patch)
tree8d273db47836b31f4418cc8bc53fe7e49cb9ce99 /generic/tclTest.c
parentb82333ed5bcaa724c7eb81ff20f6d96b1f5cc59f (diff)
downloadtcl-9c04301ef6c66c0166de0a8d94972ac3deacded6.zip
tcl-9c04301ef6c66c0166de0a8d94972ac3deacded6.tar.gz
tcl-9c04301ef6c66c0166de0a8d94972ac3deacded6.tar.bz2
* generic/tclParse.c (TclParseInit): Modified TclParseInit so
* generic/tclTest.c ([testexprparser]): that Tcl_Parse initialization conforms to documented promised about what fields will not be modified by what Tcl_Parse* routines. [Bug 910595]
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r--generic/tclTest.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c
index d29c132..b0380f6 100644
--- a/generic/tclTest.c
+++ b/generic/tclTest.c
@@ -14,7 +14,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclTest.c,v 1.78 2004/03/05 16:36:56 kennykb Exp $
+ * RCS: @(#) $Id: tclTest.c,v 1.79 2004/03/08 16:34:23 dgp Exp $
*/
#define TCL_TEST
@@ -3067,6 +3067,10 @@ TestexprparserObjCmd(clientData, interp, objc, objv)
if (length == 0) {
length = dummy;
}
+ parse.commentStart = NULL;
+ parse.commentSize = 0;
+ parse.commandStart = NULL;
+ parse.commandSize = 0;
if (Tcl_ParseExpr(interp, script, length, &parse) != TCL_OK) {
Tcl_AddErrorInfo(interp, "\n (remainder of expr: \"");
Tcl_AddErrorInfo(interp, parse.term);