diff options
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r-- | generic/tclExecute.c | 6 |
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) { |