From: Nikita Popov Date: Sat, 17 Feb 2018 21:47:25 +0000 (+0100) Subject: Fix bcpowmod() func_info X-Git-Tag: php-7.3.0alpha1~375 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea1a51f71bc5f8cf43d5cdfee451fd508307afcc;p=php Fix bcpowmod() func_info Returns false on error --- diff --git a/ext/opcache/Optimizer/zend_func_info.c b/ext/opcache/Optimizer/zend_func_info.c index 2032f597db..b93ec1eb8c 100644 --- a/ext/opcache/Optimizer/zend_func_info.c +++ b/ext/opcache/Optimizer/zend_func_info.c @@ -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),