From ea7fc8092078843e371f840310fb0bbf6dc69e62 Mon Sep 17 00:00:00 2001 From: Miguel Sofer Date: Mon, 1 Feb 2016 04:15:35 +0000 Subject: fix incomplete switch to malloc --- generic/tclBasic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v0.12