summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2009-09-30 03:11:24 (GMT)
committerdgp <dgp@users.sourceforge.net>2009-09-30 03:11:24 (GMT)
commit31597e659d7ed47cae7a3637544fc8810a12109e (patch)
treeea44dc1748f30ffb157b0ed595db7157c4993466 /generic/tclExecute.c
parent1d9466df83ad7999d5e606e39121eb3dd68b737f (diff)
downloadtcl-31597e659d7ed47cae7a3637544fc8810a12109e.zip
tcl-31597e659d7ed47cae7a3637544fc8810a12109e.tar.gz
tcl-31597e659d7ed47cae7a3637544fc8810a12109e.tar.bz2
* generic/tclDictObj.c: Updated freeIntRepProc routines so
* generic/tclExecute.c: that they set the typePtr field to * generic/tclIO.c: NULL so that the Tcl_Obj is not left * generic/tclIndexObj.c: in an inconsistent state. * generic/tclInt.h: [Bug 2857044] * generic/tclListObj.c: * generic/tclNamesp.c: * generic/tclOOCall.c: * generic/tclObj.c: * generic/tclPathObj.c: * generic/tclProc.c: * generic/tclRegexp.c: * generic/tclStringObj.c:
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 778b679..587dd3e 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.446 2009/09/07 07:28:38 das Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.447 2009/09/30 03:11:25 dgp Exp $
*/
#include "tclInt.h"
@@ -1393,8 +1393,7 @@ CompileExprObj(
|| (codePtr->nsPtr != namespacePtr)
|| (codePtr->nsEpoch != namespacePtr->resolverEpoch)
|| (codePtr->localCachePtr != iPtr->varFramePtr->localCachePtr)) {
- objPtr->typePtr->freeIntRepProc(objPtr);
- objPtr->typePtr = (Tcl_ObjType *) NULL;
+ FreeExprCodeInternalRep(objPtr);
}
}
if (objPtr->typePtr != &exprCodeType) {