From: Sara Golemon Date: Fri, 4 Apr 2003 20:43:36 +0000 (+0000) Subject: User shouldn't have to initialize this pass-by-ref parameter X-Git-Tag: RELEASE_0_5~130 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a65564f0fa66d95b6b2cccd690a516df257cac7d;p=php User shouldn't have to initialize this pass-by-ref parameter --- diff --git a/ext/standard/streamsfuncs.c b/ext/standard/streamsfuncs.c index d6e616cfe4..e524f3a8f9 100644 --- a/ext/standard/streamsfuncs.c +++ b/ext/standard/streamsfuncs.c @@ -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; }