mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-10 15:50:58 +00:00
BigInteger: !count -> count
This commit is contained in:
parent
4af1bb4c17
commit
9e27b4305e
@ -1586,7 +1586,7 @@ class Math_BigInteger
|
|||||||
$temp_value = array($quotient_value[$q_index]);
|
$temp_value = array($quotient_value[$q_index]);
|
||||||
$temp = $temp->multiply($y);
|
$temp = $temp->multiply($y);
|
||||||
$temp_value = &$temp->value;
|
$temp_value = &$temp->value;
|
||||||
if (!count($temp_value)) {
|
if (count($temp_value)) {
|
||||||
$temp_value = array_merge($adjust, $temp_value);
|
$temp_value = array_merge($adjust, $temp_value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user