From 771600ee6b01709b571de0b8e86ac14647588677 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Mon, 10 Oct 2016 11:46:43 +0300 Subject: [PATCH] Fixed information about possible return value --- ext/opcache/Optimizer/zend_func_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/Optimizer/zend_func_info.c b/ext/opcache/Optimizer/zend_func_info.c index 40fddd80f0..eb8dd1eeff 100644 --- a/ext/opcache/Optimizer/zend_func_info.c +++ b/ext/opcache/Optimizer/zend_func_info.c @@ -653,7 +653,7 @@ static const func_info_t func_infos[] = { F1("stream_socket_get_name", MAY_BE_FALSE | MAY_BE_STRING), F1("stream_socket_recvfrom", MAY_BE_FALSE | MAY_BE_STRING), F0("stream_socket_sendto", MAY_BE_FALSE | MAY_BE_LONG), - F0("stream_socket_enable_crypto", MAY_BE_FALSE | MAY_BE_LONG), + F0("stream_socket_enable_crypto", MAY_BE_FALSE | MAY_BE_TRUE | MAY_BE_LONG), #ifdef HAVE_SHUTDOWN F0("stream_socket_shutdown", MAY_BE_FALSE | MAY_BE_TRUE), #endif -- 2.50.1