This website works better with JavaScript.
Home
Help
Register
Sign In
AerScript
/
Aer
Watch
0
Star
6
Fork
0
Code
Issues
6
Pull Requests
0
Releases
2
Wiki
Activity
Browse Source
Fix for index outside the bounds.
release/v0.1
Rafal Kupiec
1 year ago
parent
4d150c2fe3
commit
a09c6b3fad
Signed by:
belliash
GPG Key ID:
4E829243E0CFE6B4
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
tests/goto_statement.aer
+ 1
- 1
tests/goto_statement.aer
View File
@ -50,7 +50,7 @@ class Test {
print($headers[$pos], "\n");
cIterator: {
print(" ", $headers[$pos][$c], "\n");
if(
!($headers[$pos][++$c])
) {
if(
strlen($headers[$pos]) <= ++$c
) {
goto cIteratorExit;
}
goto cIterator;
Write
Preview
Loading…
Cancel
Save