summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2021-01-04 18:57:57 +0100
committerNikita Popov <nikita.ppv@gmail.com>2021-01-04 18:57:57 +0100
commitab9f497b90bdbbe1f0b0ada1867d1007b7a5958d (patch)
treec78351030b4a43aafd7b4f39e488883eecb4ef9c
parent7d30943dc98df084101be36752c459d64eb34e39 (diff)
downloadphp-git-ab9f497b90bdbbe1f0b0ada1867d1007b7a5958d.tar.gz
Fix curl_getinfo() funcinfo
This can now return any type with any refcount.
-rw-r--r--ext/opcache/Optimizer/zend_func_info.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/opcache/Optimizer/zend_func_info.c b/ext/opcache/Optimizer/zend_func_info.c
index 19ab4dbffd..78ba2a7027 100644
--- a/ext/opcache/Optimizer/zend_func_info.c
+++ b/ext/opcache/Optimizer/zend_func_info.c
@@ -504,7 +504,6 @@ static const func_info_t func_infos[] = {
F1("curl_init", MAY_BE_FALSE | MAY_BE_OBJECT),
F1("curl_copy_handle", MAY_BE_FALSE | MAY_BE_OBJECT),
F1("curl_version", MAY_BE_FALSE | MAY_BE_ARRAY | MAY_BE_ARRAY_KEY_STRING | MAY_BE_ARRAY_OF_LONG | MAY_BE_ARRAY_OF_STRING | MAY_BE_ARRAY_OF_ARRAY),
- F1("curl_getinfo", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING | MAY_BE_LONG | MAY_BE_DOUBLE | MAY_BE_ARRAY | MAY_BE_ARRAY_KEY_ANY | MAY_BE_ARRAY_OF_ANY),
F1("curl_error", MAY_BE_STRING),
F1("curl_strerror", MAY_BE_NULL | MAY_BE_STRING),
F1("curl_multi_strerror", MAY_BE_NULL | MAY_BE_STRING),