diff options
author | escoffon <escoffon> | 1998-07-01 19:08:21 (GMT) |
---|---|---|
committer | escoffon <escoffon> | 1998-07-01 19:08:21 (GMT) |
commit | ee77e83f0be4a17dede324b514b611c4db8b60ad (patch) | |
tree | 3f17ff710b2f551cdac37c439b2fd217437261e3 /generic/tclBasic.c | |
parent | 43a575cb60322a2ae136dfc2be6167f5d66b7390 (diff) | |
download | tcl-ee77e83f0be4a17dede324b514b611c4db8b60ad.zip tcl-ee77e83f0be4a17dede324b514b611c4db8b60ad.tar.gz tcl-ee77e83f0be4a17dede324b514b611c4db8b60ad.tar.bz2 |
Merged changes between child workspace "/home/escoffon/ws/tcl8.0" and
parent workspace "/ws/tcl8.0".
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 40813ec..e8db382 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * SCCS: %Z% $Id: tclBasic.c,v 1.4 1998/06/29 17:32:09 welch Exp $ + * SCCS: %Z% $Id: tclBasic.c,v 1.5 1998/07/01 19:09:11 escoffon Exp $ */ #include "tclInt.h" @@ -3494,8 +3494,8 @@ Tcl_ExprObj(interp, objPtr, resultPtrPtr) auxDataPtr = compEnv.auxDataArrayPtr; for (i = 0; i < compEnv.auxDataArrayNext; i++) { - if (auxDataPtr->freeProc != NULL) { - auxDataPtr->freeProc(auxDataPtr->clientData); + if (auxDataPtr->type->freeProc != NULL) { + auxDataPtr->type->freeProc(auxDataPtr->clientData); } auxDataPtr++; } |