]> git.mxchange.org Git - friendica.git/blobdiff - library/asn1.php
regen master messages.po
[friendica.git] / library / asn1.php
index ac14a5b16f3790110aea92ef829e201ac192c4d7..cda96b6c8a94e93a021ae5b7880840ceb7752c56 100644 (file)
@@ -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;
                                }