Do not try to access non-existen string index.
The build was successful. Detalhes

Esse commit está contido em:
Rafal Kupiec 2019-09-07 20:07:46 +02:00
commit 91887c0185
Assinado por: belliash
ID da chave GPG: 4E829243E0CFE6B4
1 arquivos alterados com 4 adições e 2 exclusões

Ver arquivo

@ -55,8 +55,10 @@ class Base32 {
if(!in_array($input[$i], Base32::$map))
return '';
for(int $j = 0; $j < 8; $j++) {
if(array_key_exists($input[$i + $j], Base32::$flippedMap)) {
$x += str_pad(base_convert(Base32::$flippedMap[$input[$i + $j]], 10, 2), 5, '0', STR_PAD_LEFT);
if($i + $j < strlen($input)) {
if(array_key_exists($input[$i + $j], Base32::$flippedMap)) {
$x += str_pad(base_convert(Base32::$flippedMap[$input[$i + $j]], 10, 2), 5, '0', STR_PAD_LEFT);
}
}
}
string[] $eightBits = str_split($x, 8);