1
0
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:
Sara Golemon
2003-04-04 20:43:36 +00:00
parent cbb98284da
commit a65564f0fa

View File

@@ -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;
}