diff options
author | dgp <dgp@users.sourceforge.net> | 2009-09-30 03:11:24 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2009-09-30 03:11:24 (GMT) |
commit | 31597e659d7ed47cae7a3637544fc8810a12109e (patch) | |
tree | ea44dc1748f30ffb157b0ed595db7157c4993466 /generic/tclObj.c | |
parent | 1d9466df83ad7999d5e606e39121eb3dd68b737f (diff) | |
download | tcl-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/tclObj.c')
-rw-r--r-- | generic/tclObj.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c index 2bbc009..e32819d 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclObj.c,v 1.160 2009/09/17 08:39:40 das Exp $ + * RCS: @(#) $Id: tclObj.c,v 1.161 2009/09/30 03:11:26 dgp Exp $ */ #include "tclInt.h" @@ -3130,6 +3130,7 @@ FreeBignum( if ((long) objPtr->internalRep.ptrAndLongRep.value < 0) { ckfree((char *) objPtr->internalRep.ptrAndLongRep.ptr); } + objPtr->typePtr = NULL; } /* @@ -4218,6 +4219,7 @@ FreeCmdNameInternalRep( ckfree((char *) resPtr); } } + objPtr->typePtr = NULL; } /* |