Fix for index outside the bounds.
The build was successful. Ayrıntılar

Bu işleme şunda yer alıyor:
Rafal Kupiec 2019-07-01 21:08:07 +02:00
ebeveyn 4d150c2fe3
işleme a09c6b3fad
İmzalayan: belliash
GPG Anahtar Kimliği: 4E829243E0CFE6B4
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme

Dosyayı Görüntüle

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