]> granicus.if.org Git - php/commitdiff
Fixed information about possible return value
authorDmitry Stogov <dmitry@zend.com>
Mon, 10 Oct 2016 08:46:43 +0000 (11:46 +0300)
committerDmitry Stogov <dmitry@zend.com>
Mon, 10 Oct 2016 08:46:43 +0000 (11:46 +0300)
ext/opcache/Optimizer/zend_func_info.c

index 40fddd80f0ed3bb2ff9e8360334201b3822a40d1..eb8dd1eeffa77098c69a5d2b2236a4ee8c046c1e 100644 (file)
@@ -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