diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2002-08-07 14:24:55 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2002-08-07 14:24:55 (GMT) |
commit | a8fc60bdf11abc47568df177b8c3d80cb96f33db (patch) | |
tree | 67f46d928070e97788e9c9d22b48a7fb7dd8aaca /generic | |
parent | 662e3f9cf9ef3534b5ac05ea668b44fd912d2180 (diff) | |
download | tcl-a8fc60bdf11abc47568df177b8c3d80cb96f33db.zip tcl-a8fc60bdf11abc47568df177b8c3d80cb96f33db.tar.gz tcl-a8fc60bdf11abc47568df177b8c3d80cb96f33db.tar.bz2 |
* generic/tclObj.c (Tcl_NewObj): added conditional code for
USE_THREAD_ALLOC; objects allocated through Tcl_NewObj() were
otherwise being leaked. [Bug 587488] reported by Sven Sass.
Diffstat (limited to 'generic')
-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 78581f2..2c5b468 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.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. * - * RCS: @(#) $Id: tclObj.c,v 1.35 2002/08/05 03:24:41 dgp Exp $ + * RCS: @(#) $Id: tclObj.c,v 1.36 2002/08/07 14:25:01 msofer Exp $ */ #include "tclInt.h" @@ -523,6 +523,8 @@ Tcl_NewObj() Tcl_MutexLock(&tclObjMutex); #ifdef PURIFY objPtr = (Tcl_Obj *) Tcl_Ckalloc(sizeof(Tcl_Obj)); +#elif defined(TCL_THREADS) && defined(USE_THREAD_ALLOC) + objPtr = TclThreadAllocObj(); #else if (tclFreeObjList == NULL) { TclAllocateFreeObjects(); |