summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixTime.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2013-01-28 00:57:04 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2013-01-28 00:57:04 (GMT)
commit5fea85e6d34e996ed8cc9a3430dd178acc3417ec (patch)
treeddc0546dab10c8bc2575020750fc67d405b7b617 /unix/tclUnixTime.c
parent4a7aba80a6dd0fc4f7bda107c58e169366be1e46 (diff)
parent13dcbf7d2f2bef37cc4b71beb494d7a3cd140b72 (diff)
downloadtcl-5fea85e6d34e996ed8cc9a3430dd178acc3417ec.zip
tcl-5fea85e6d34e996ed8cc9a3430dd178acc3417ec.tar.gz
tcl-5fea85e6d34e996ed8cc9a3430dd178acc3417ec.tar.bz2
merge trunk
Diffstat (limited to 'unix/tclUnixTime.c')
-rw-r--r--unix/tclUnixTime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixTime.c b/unix/tclUnixTime.c
index c7921fe..926e8f4 100644
--- a/unix/tclUnixTime.c
+++ b/unix/tclUnixTime.c
@@ -503,7 +503,7 @@ SetTZIfNecessary(void)
if (lastTZ == NULL) {
Tcl_CreateExitHandler(CleanupMemory, NULL);
} else {
- Tcl_Free(lastTZ);
+ ckfree(lastTZ);
}
lastTZ = ckalloc(strlen(newTZ) + 1);
strcpy(lastTZ, newTZ);