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/tclProc.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/tclProc.c')
-rw-r--r-- | generic/tclProc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclProc.c b/generic/tclProc.c index a87caa7..c1c12f9 100644 --- a/generic/tclProc.c +++ b/generic/tclProc.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclProc.c,v 1.74 2005/05/10 18:34:47 kennykb Exp $ + * RCS: @(#) $Id: tclProc.c,v 1.75 2005/06/01 22:19:16 dgp Exp $ */ #include "tclInt.h" @@ -1671,7 +1671,9 @@ TclUpdateReturnInfo(iPtr) } if (iPtr->returnLevel == 0) { /* Now we've reached the level to return the requested -code */ - return iPtr->returnCode; + code = iPtr->returnCode; + iPtr->returnLevel = 1; + iPtr->returnCode = TCL_OK; } return code; } |