1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00

Fix bcpowmod() func_info

Returns false on error
This commit is contained in:
Nikita Popov
2018-02-17 22:47:25 +01:00
parent 9c4783cbd3
commit ea1a51f71b

View File

@@ -1504,7 +1504,7 @@ static const func_info_t func_infos[] = {
F1("bcmul", MAY_BE_NULL | MAY_BE_STRING),
F1("bcdiv", MAY_BE_NULL | MAY_BE_STRING),
F1("bcmod", MAY_BE_NULL | MAY_BE_STRING),
F1("bcpowmod", MAY_BE_NULL | MAY_BE_STRING),
F1("bcpowmod", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING),
F1("bcpow", MAY_BE_NULL | MAY_BE_STRING),
F1("bcsqrt", MAY_BE_NULL | MAY_BE_STRING),
F0("bccomp", MAY_BE_NULL | MAY_BE_LONG),