diff options
author | dgp <dgp@users.sourceforge.net> | 2005-06-01 22:19:03 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-06-01 22:19:03 (GMT) |
commit | 739062154a9a146d256d6138ad44358b9d53d55d (patch) | |
tree | fe8837d9f415ad1656cf3105851dae5d9799421d /generic/tclResult.c | |
parent | f9d8739931a289eb5807115e767a3e3a80a3205b (diff) | |
download | tcl-739062154a9a146d256d6138ad44358b9d53d55d.zip tcl-739062154a9a146d256d6138ad44358b9d53d55d.tar.gz tcl-739062154a9a146d256d6138ad44358b9d53d55d.tar.bz2 |
* generic/tclProc.c: Revised fix for [Bug 1209759] is more complex,
* generic/tclResult.c: but should have less performance impact.
Diffstat (limited to 'generic/tclResult.c')
-rw-r--r-- | generic/tclResult.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tclResult.c b/generic/tclResult.c index 1c4438d..611b85f 100644 --- a/generic/tclResult.c +++ b/generic/tclResult.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclResult.c,v 1.26 2005/06/01 21:38:41 dgp Exp $ + * RCS: @(#) $Id: tclResult.c,v 1.27 2005/06/01 22:19:16 dgp Exp $ */ #include "tclInt.h" @@ -927,8 +927,6 @@ Tcl_ResetResult(interp) Tcl_DecrRefCount(iPtr->errorInfo); iPtr->errorInfo = NULL; } - iPtr->returnLevel = 1; - iPtr->returnCode = TCL_OK; if (iPtr->returnOpts) { Tcl_DecrRefCount(iPtr->returnOpts); iPtr->returnOpts = NULL; |