X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=library%2Fasn1.php;h=cda96b6c8a94e93a021ae5b7880840ceb7752c56;hb=71d8cea6379a276d522d21ec1697fcb7b517901c;hp=ac14a5b16f3790110aea92ef829e201ac192c4d7;hpb=ae905cbd1b67b2aeae33a64302368d285f63732d;p=friendica.git diff --git a/library/asn1.php b/library/asn1.php index ac14a5b16f..cda96b6c8a 100644 --- a/library/asn1.php +++ b/library/asn1.php @@ -156,7 +156,7 @@ class ASN_BASE { if (($length & ASN_LONG_LEN)==ASN_LONG_LEN){ $tempLength = 0; for ($x=0; $x<($length & (ASN_LONG_LEN-1)); $x++){ - $tempLength = ord($string[$p++]) + ($tempLength * 256); + $tempLength = @ord($string[$p++]) + ($tempLength * 256); } $length = $tempLength; }