diff options
author | pooryorick <com.digitalsmarties@pooryorick.com> | 2021-05-16 19:34:09 (GMT) |
---|---|---|
committer | pooryorick <com.digitalsmarties@pooryorick.com> | 2021-05-16 19:34:09 (GMT) |
commit | b02cd57334865909a8622d486b47daf7439aee6c (patch) | |
tree | 7fd2eb6bc399cdb0b688ed1e971cf214266cdcd4 /generic/tclZipfs.c | |
parent | 480bb82eff2158cbe27b4769a4237fdd564b3001 (diff) | |
download | tcl-b02cd57334865909a8622d486b47daf7439aee6c.zip tcl-b02cd57334865909a8622d486b47daf7439aee6c.tar.gz tcl-b02cd57334865909a8622d486b47daf7439aee6c.tar.bz2 |
Replace ckfree with Tcl_Free.
Diffstat (limited to 'generic/tclZipfs.c')
-rw-r--r-- | generic/tclZipfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclZipfs.c b/generic/tclZipfs.c index d81f5c0..4d619f0 100644 --- a/generic/tclZipfs.c +++ b/generic/tclZipfs.c @@ -5753,7 +5753,7 @@ ZipfsExitHandler( static void ZipfsFinalize(void) { Tcl_DeleteHashTable(&ZipFS.fileHash); - ckfree(ZipFS.fallbackEntryEncoding); + Tcl_Free(ZipFS.fallbackEntryEncoding); ZipFS.initialized = -1; } |