From f2b14df74cee8d199bf246e95935954f77e0cbec Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sat, 9 Aug 2014 20:10:08 +1000 Subject: Init lType and rType, was getting bogus values. --- src/LuaSL/LuaSL_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LuaSL/LuaSL_compile.c b/src/LuaSL/LuaSL_compile.c index 87ba95d..94b354b 100644 --- a/src/LuaSL/LuaSL_compile.c +++ b/src/LuaSL/LuaSL_compile.c @@ -373,7 +373,7 @@ LSL_Leaf *addOperation(LuaSL_compiler *compiler, LSL_Leaf *left, LSL_Leaf *lval, { if (lval) { - opType lType, rType; + opType lType = OT_invalid, rType = OT_invalid; lval->left = left; lval->right = right; -- cgit v1.1