diff options
Diffstat (limited to '')
-rw-r--r-- | LuaSL/src/LuaSL_compile.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c index fdfef47..65a8089 100644 --- a/LuaSL/src/LuaSL_compile.c +++ b/LuaSL/src/LuaSL_compile.c | |||
@@ -201,15 +201,14 @@ void burnLeaf(void *data) | |||
201 | LSL_Leaf *leaf = data; | 201 | LSL_Leaf *leaf = data; |
202 | if (leaf) | 202 | if (leaf) |
203 | { | 203 | { |
204 | burnLeaf(leaf->left); | 204 | // burnLeaf(leaf->left); |
205 | burnLeaf(leaf->right); | 205 | // burnLeaf(leaf->right); |
206 | // TODO - Should free up the value to. | 206 | // TODO - Should free up the value to. |
207 | eina_strbuf_free(leaf->ignorableText); | 207 | // eina_strbuf_free(leaf->ignorableText); |
208 | free(leaf); | 208 | // free(leaf); |
209 | } | 209 | } |
210 | } | 210 | } |
211 | 211 | ||
212 | |||
213 | static LSL_Leaf *findVariable(LuaSL_compiler *compiler, const char *name) | 212 | static LSL_Leaf *findVariable(LuaSL_compiler *compiler, const char *name) |
214 | { | 213 | { |
215 | LSL_Leaf *var = NULL; | 214 | LSL_Leaf *var = NULL; |