mirror of
https://github.com/php/php-src.git
synced 2026-04-16 12:31:06 +02:00
User shouldn't have to initialize this pass-by-ref parameter
This commit is contained in:
@@ -201,7 +201,7 @@ PHP_FUNCTION(stream_socket_accept)
|
||||
|
||||
char *errstr = NULL;
|
||||
|
||||
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|dz!", &zstream, &timeout, &peername) == FAILURE) {
|
||||
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|dz", &zstream, &timeout, &peername) == FAILURE) {
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user