From: Nikita Popov Date: Sat, 17 Feb 2018 21:50:17 +0000 (+0100) Subject: Fix curl_multi_close() func info X-Git-Tag: php-7.2.4RC1~69 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=acb9426a6b9d0bf763376221183eb51fd2f9b665;p=php Fix curl_multi_close() func info Returns false on failure --- diff --git a/ext/opcache/Optimizer/zend_func_info.c b/ext/opcache/Optimizer/zend_func_info.c index ffc1224ce4..58bf1f56c8 100644 --- a/ext/opcache/Optimizer/zend_func_info.c +++ b/ext/opcache/Optimizer/zend_func_info.c @@ -1032,7 +1032,7 @@ static const func_info_t func_infos[] = { F0("curl_multi_exec", MAY_BE_NULL | MAY_BE_LONG), FN("curl_multi_getcontent", MAY_BE_NULL | MAY_BE_STRING), F1("curl_multi_info_read", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_LONG | MAY_BE_ARRAY | MAY_BE_ARRAY_KEY_STRING | MAY_BE_ARRAY_OF_LONG | MAY_BE_ARRAY_OF_RESOURCE), - F0("curl_multi_close", MAY_BE_NULL), + F0("curl_multi_close", MAY_BE_NULL | MAY_BE_FALSE), F0("curl_multi_setopt", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_TRUE), F1("curl_share_init", MAY_BE_NULL | MAY_BE_RESOURCE), F0("curl_share_close", MAY_BE_NULL),