diff options
author | Joe Mistachkin <joe@mistachkin.com> | 2009-03-16 00:43:08 (GMT) |
---|---|---|
committer | Joe Mistachkin <joe@mistachkin.com> | 2009-03-16 00:43:08 (GMT) |
commit | c24409225ce9d89cb1c7c4406cb2da6e3e537cea (patch) | |
tree | f2cd1de3f4bd6ac95a11882faee7f00fc5dd033c /generic/tclThreadStorage.c | |
parent | a8ac6c3230544ef6ce40e973f040b489706d5ed2 (diff) | |
download | tcl-c24409225ce9d89cb1c7c4406cb2da6e3e537cea.zip tcl-c24409225ce9d89cb1c7c4406cb2da6e3e537cea.tar.gz tcl-c24409225ce9d89cb1c7c4406cb2da6e3e537cea.tar.bz2 |
revise fix for [Bug 2687952]
Diffstat (limited to 'generic/tclThreadStorage.c')
-rw-r--r-- | generic/tclThreadStorage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclThreadStorage.c b/generic/tclThreadStorage.c index adcf1d3..1a0a89d 100644 --- a/generic/tclThreadStorage.c +++ b/generic/tclThreadStorage.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclThreadStorage.c,v 1.19 2009/03/15 22:34:59 dkf Exp $ + * RCS: @(#) $Id: tclThreadStorage.c,v 1.20 2009/03/16 00:43:09 mistachkin Exp $ */ #include "tclInt.h" @@ -119,7 +119,7 @@ TSDTableDelete( * and must now be deallocated or they will leak. */ - TclpSysFree((char *) tsdTablePtr->tablePtr[i]); + ckfree((char *) tsdTablePtr->tablePtr[i]); } } |