Fixed index out of bounds error

This commit is contained in:
Hackerpilot 2012-06-17 12:10:43 +00:00
parent 53c7f46233
commit 35f68506ea
1 changed files with 1 additions and 1 deletions

View File

@ -591,7 +591,7 @@ body
}
}
if (tokens[index] == TokenType.If)
if (index < tokens.length && tokens[index] == TokenType.If)
f.constraint = parseConstraint(tokens, index);
while (index < tokens.length &&