mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-09 15:20:58 +00:00
Merge pull request #817 from terrafrost/php7
BigInteger: fix PHP7 error * terrafrost/php7: BigInteger: fix PHP7 error
This commit is contained in:
commit
4c7a2b5d73
@ -3557,7 +3557,7 @@ class Math_BigInteger
|
|||||||
|
|
||||||
switch (MATH_BIGINTEGER_MODE) {
|
switch (MATH_BIGINTEGER_MODE) {
|
||||||
case MATH_BIGINTEGER_MODE_GMP:
|
case MATH_BIGINTEGER_MODE_GMP:
|
||||||
if (!empty($result->bitmask->value)) {
|
if ($this->bitmask !== false) {
|
||||||
$result->value = gmp_and($result->value, $result->bitmask->value);
|
$result->value = gmp_and($result->value, $result->bitmask->value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user