summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Kanios <keith@kanios.net>2010-12-18 11:05:46 -0600
committerKeith Kanios <keith@kanios.net>2010-12-18 11:05:46 -0600
commit104803de9fbe715181d99a5af4c9580fccae3f2a (patch)
tree40fdc95ba87e94d5a636a224b8999a150b4af970
parentba935f2bc581051d09a34bc1c38373f75919adfc (diff)
downloadnasm-104803de9fbe715181d99a5af4c9580fccae3f2a.tar.gz
preproc.c: free tokens when ignoring expansion definition lines
-rw-r--r--preproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/preproc.c b/preproc.c
index 91137ad3..6a9e2384 100644
--- a/preproc.c
+++ b/preproc.c
@@ -5296,7 +5296,7 @@ static char *pp_getline(void)
defining->last = l;
}
} else {
- //free_tlist(tline); /***** sanity check: is this supposed to be here? *****/
+ free_tlist(tline);
}
defining->linecount++;
continue;