summaryrefslogtreecommitdiffstats
path: root/generic/tclOOCall.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/tclOOCall.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/tclOOCall.c')
-rw-r--r--generic/tclOOCall.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/generic/tclOOCall.c b/generic/tclOOCall.c
index e9760f7..e8f9757 100644
--- a/generic/tclOOCall.c
+++ b/generic/tclOOCall.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclOOCall.c,v 1.14 2009/07/12 14:51:30 dkf Exp $
+ * RCS: @(#) $Id: tclOOCall.c,v 1.15 2009/09/30 03:11:26 dgp Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -173,9 +173,7 @@ StashCallChain(
CallChain *callPtr)
{
callPtr->refCount++;
- if (objPtr->typePtr && objPtr->typePtr->freeIntRepProc) {
- objPtr->typePtr->freeIntRepProc(objPtr);
- }
+ TclFreeIntRep(objPtr);
objPtr->typePtr = &methodNameType;
objPtr->internalRep.otherValuePtr = callPtr;
}
@@ -956,7 +954,7 @@ TclOOGetCallContext(
callPtr->refCount++;
goto returnContext;
}
- cacheInThisObj->typePtr->freeIntRepProc(cacheInThisObj);
+ FreeMethodNameRep(cacheInThisObj);
}
if (oPtr->flags & USE_CLASS_CACHE) {