diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-25 11:54:46 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-25 11:54:46 +0000 |
commit | e0722ee9d94c0e812a474e349ded5147f6b869f6 (patch) | |
tree | 5b110cd06e817e6ed867a42623b559de91b7da41 /unix/main.c | |
parent | 28eb57786d789cf0dc20390b7afb86fc09d1b0f3 (diff) | |
parent | aee2ba70de774f954a793efb73e72faaf4e6524d (diff) | |
download | micropython-e0722ee9d94c0e812a474e349ded5147f6b869f6.tar.gz micropython-e0722ee9d94c0e812a474e349ded5147f6b869f6.zip |
Merge branch 'free-parse-tree' of github.com:pfalcon/micropython into pfalcon-free-parse-tree
Diffstat (limited to 'unix/main.c')
-rw-r--r-- | unix/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unix/main.c b/unix/main.c index 681bf2aa20..34d9618ca2 100644 --- a/unix/main.c +++ b/unix/main.c @@ -62,6 +62,7 @@ static void execute_from_lexer(mp_lexer_t *lex, mp_parse_input_kind_t input_kind */ mp_obj_t module_fun = mp_compile(pn, source_name, is_repl); + parse_node_free_struct(pn); if (module_fun == mp_const_none) { // compile error |