diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-25 13:07:59 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-25 13:07:59 (GMT) |
commit | 9177f9a41b86a565c0a13030b18456608cc5a0d2 (patch) | |
tree | 679f1017e76d0436284b6fd6ad417469b14b3394 /unix/tclUnixTime.c | |
parent | 6ec16f5f96257f9a6ac5d507f8f19258c7ceaa28 (diff) | |
download | tcl-9177f9a41b86a565c0a13030b18456608cc5a0d2.zip tcl-9177f9a41b86a565c0a13030b18456608cc5a0d2.tar.gz tcl-9177f9a41b86a565c0a13030b18456608cc5a0d2.tar.bz2 |
Another memory leak, and one Tcl_Free -> ckfree
Diffstat (limited to 'unix/tclUnixTime.c')
-rw-r--r-- | unix/tclUnixTime.c | 2 |
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); |