summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2016-02-01 04:15:35 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2016-02-01 04:15:35 (GMT)
commitea7fc8092078843e371f840310fb0bbf6dc69e62 (patch)
treea65be77b76f8087173e8b5e6c8b1c13433c890cf
parent16e6ccfc57acd053f1b8e97278ea42dc36785a56 (diff)
downloadtcl-ea7fc8092078843e371f840310fb0bbf6dc69e62.zip
tcl-ea7fc8092078843e371f840310fb0bbf6dc69e62.tar.gz
tcl-ea7fc8092078843e371f840310fb0bbf6dc69e62.tar.bz2
fix incomplete switch to malloc
-rw-r--r--generic/tclBasic.c2
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;
}