0
5

Fix for index outside the bounds.
Alle Prüfungen waren erfolgreich
The build was successful.

Dieser Commit ist enthalten in:
Rafal Kupiec 2019-07-01 21:08:07 +02:00
Ursprung 4d150c2fe3
Commit a09c6b3fad
Signiert von: belliash
GPG-Schlüssel-ID: 4E829243E0CFE6B4

Datei anzeigen

@ -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;