From d2b70292fc02dc90b7b0a9ec7a46e4ec216288a8 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Tue, 17 Jan 2012 16:37:30 +1000 Subject: Disable leaf burning for now, it's crashing. --- LuaSL/src/LuaSL_compile.c | 9 ++++----- 1 file 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) LSL_Leaf *leaf = data; if (leaf) { - burnLeaf(leaf->left); - burnLeaf(leaf->right); +// burnLeaf(leaf->left); +// burnLeaf(leaf->right); // TODO - Should free up the value to. - eina_strbuf_free(leaf->ignorableText); - free(leaf); +// eina_strbuf_free(leaf->ignorableText); +// free(leaf); } } - static LSL_Leaf *findVariable(LuaSL_compiler *compiler, const char *name) { LSL_Leaf *var = NULL; -- cgit v1.1