blob: 9d9d0db48cf4e192222021a0d928080b81915bc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
Bug #78878 (Buffer underflow in bc_shift_addsub)
--EXTENSIONS--
bcmath
--FILE--
<?php
try {
print bcmul("\xB26483605105519922841849335928742092", bcpowmod(2, 65535, -4e-4));
} catch (\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
?>
--EXPECT--
bcpowmod(): Argument #3 ($modulus) cannot have a fractional part
|