summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2009-12-10 22:01:47 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2009-12-10 22:01:47 (GMT)
commit6e708a1db41169e8de8604f2e5afdbde80e26937 (patch)
tree3e6a2f38a753d2484414a6a58cdbb6a7906b937f
parenta70b4959890f4ab6855ae91437fd9b7cfe3c668e (diff)
downloadtcl-6e708a1db41169e8de8604f2e5afdbde80e26937.zip
tcl-6e708a1db41169e8de8604f2e5afdbde80e26937.tar.gz
tcl-6e708a1db41169e8de8604f2e5afdbde80e26937.tar.bz2
* generic/tclExecute.c: fix panic in http11.test caused by buggy
earlier commits in coroutine management.
-rw-r--r--ChangeLog5
-rw-r--r--generic/tclExecute.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c1bd26..9d9420e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-12-10 Miguel Sofer <msofer@users.sf.net>
+
+ * generic/tclExecute.c: fix panic in http11.test caused by buggy
+ earlier commits in coroutine management.
+
2009-12-10 Andreas Kupries <andreask@activestate.com>
* generic/tclObj.c (TclContinuationsEnter): [Bug 2895323]: Updated
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 28fab46..e2ef7e4 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.460 2009/12/10 17:48:39 msofer Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.461 2009/12/10 22:01:48 msofer Exp $
*/
#include "tclInt.h"
@@ -2040,7 +2040,7 @@ TclExecuteByteCode(
corPtr->base.cmdFramePtr = bcFramePtr;
BP->prevBottomPtr = NULL;
- iPtr->varFramePtr->callerPtr = iPtr->rootFramePtr;
+ iPtr->varFramePtr = iPtr->rootFramePtr;
}
if (!corPtr->stackLevel) {