aboutsummaryrefslogtreecommitdiffstats
path: root/parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/parser.c b/parser.c
index 0c88cb0..5608998 100644
--- a/parser.c
+++ b/parser.c
@@ -39,9 +39,9 @@ void iend(interpreter *it)
{
for (unsigned int i = 0; i < MAX_VARS; i++) {
if (it->vars[i].used == 1) {
- char *s = it->vars[i].svalue;
- if (s != 0 && s != str_undef && s != str_func)
- free(s);
+ //char *s = it->vars[i].svalue;
+ //if (s != 0 && s != str_undef && s != str_func)
+ // free(s);
free(it->vnames[i]);
}
}