diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2016-02-01 04:15:35 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2016-02-01 04:15:35 (GMT) |
commit | ea7fc8092078843e371f840310fb0bbf6dc69e62 (patch) | |
tree | a65be77b76f8087173e8b5e6c8b1c13433c890cf | |
parent | 16e6ccfc57acd053f1b8e97278ea42dc36785a56 (diff) | |
download | tcl-ea7fc8092078843e371f840310fb0bbf6dc69e62.zip tcl-ea7fc8092078843e371f840310fb0bbf6dc69e62.tar.gz tcl-ea7fc8092078843e371f840310fb0bbf6dc69e62.tar.bz2 |
fix incomplete switch to malloc
-rw-r--r-- | generic/tclBasic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index d823868..1b5cc7a 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -8241,7 +8241,7 @@ NRStackBottom( */ if (this->next) { - ckfree (this->next); + free (this->next); this->next = NULL; } |