From: Nikita Popov Date: Sat, 17 Feb 2018 21:48:19 +0000 (+0100) Subject: Fix bcscale() function info X-Git-Tag: php-7.3.0alpha1~378 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50def51d198042d6ef91c62cf49f7ac14be8fa95;p=php Fix bcscale() function info Master only: This function now returns the old scale. --- diff --git a/ext/opcache/Optimizer/zend_func_info.c b/ext/opcache/Optimizer/zend_func_info.c index 1bcfe9fe24..c9a6ff023c 100644 --- a/ext/opcache/Optimizer/zend_func_info.c +++ b/ext/opcache/Optimizer/zend_func_info.c @@ -1508,7 +1508,7 @@ static const func_info_t func_infos[] = { F1("bcpow", MAY_BE_NULL | MAY_BE_STRING), F1("bcsqrt", MAY_BE_NULL | MAY_BE_STRING), F0("bccomp", MAY_BE_NULL | MAY_BE_LONG), - F0("bcscale", MAY_BE_NULL | MAY_BE_TRUE), + F0("bcscale", MAY_BE_NULL | MAY_BE_LONG), /* ext/exif */ F1("exif_tagname", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING),