From: Ari Johnson Date: Mon, 25 Apr 2011 03:33:30 +0000 (-0500) Subject: Initialize i = 0 in fun_break - temporary workaround X-Git-Url: https://git.theari.com/?a=commitdiff_plain;h=deb6092170b7875db63ce0993d7b7bda3061f847;p=cobramush.git Initialize i = 0 in fun_break - temporary workaround refs #247 --- diff --git a/src/funlist.c b/src/funlist.c index 6798d32..d67a9d0 100644 --- a/src/funlist.c +++ b/src/funlist.c @@ -2266,7 +2266,7 @@ FUNCTION(fun_splice) FUNCTION(fun_break) { - int i; + int i = 0; if(!args[0] || !*args[0]) i = 0;