summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2008-12-18 23:00:39 (GMT)
committerdgp <dgp@users.sourceforge.net>2008-12-18 23:00:39 (GMT)
commit995eb54922eaaa97c8591d1368a1414bbf8aa22d (patch)
tree5a80099e88a03cc3efc08b82ddb651e4d8578259 /generic/tclExecute.c
parent305acd89586e2afff8b589ecdbac4865a210b5c1 (diff)
downloadtcl-995eb54922eaaa97c8591d1368a1414bbf8aa22d.zip
tcl-995eb54922eaaa97c8591d1368a1414bbf8aa22d.tar.gz
tcl-995eb54922eaaa97c8591d1368a1414bbf8aa22d.tar.bz2
* generic/tclExecute.c: Disabled apparently faulty assertion.
[Bug 2415422].
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index ed656d5..c6e0d4f 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.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: tclExecute.c,v 1.422 2008/12/16 23:24:13 nijtmans Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.423 2008/12/18 23:00:39 dgp Exp $
*/
#include "tclInt.h"
@@ -2044,7 +2044,9 @@ TclExecuteByteCode(
* reset, now process the return.
*/
- NRE_ASSERT(iPtr->cmdFramePtr == bcFramePtr);
+ /* Disabled the following assertion to solve the trouble reported
+ * in Tcl Bug 2415422. Needs review. */
+ /*NRE_ASSERT(iPtr->cmdFramePtr == bcFramePtr);*/
iPtr->cmdFramePtr = bcFramePtr->nextPtr;
if (iPtr->execEnvPtr->rewind) {