From: Anatol Belski Date: Wed, 19 Mar 2014 05:35:58 +0000 (+0100) Subject: remove obsolete comment X-Git-Tag: PRE_PHPNG_MERGE~466^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ec1153062040aa79382fb47bdcb42d24c2ab08f6;p=php remove obsolete comment --- diff --git a/ext/standard/streamsfuncs.c b/ext/standard/streamsfuncs.c index e19a453fd8..8d42a51af6 100644 --- a/ext/standard/streamsfuncs.c +++ b/ext/standard/streamsfuncs.c @@ -610,9 +610,6 @@ static int stream_array_to_fd_set(zval *stream_array, fd_set *fds, php_socket_t zend_hash_get_current_data(Z_ARRVAL_P(stream_array), (void **) &elem) == SUCCESS; zend_hash_move_forward(Z_ARRVAL_P(stream_array))) { - /* Temporary int fd is needed for the STREAM data type on windows, passing this_fd directly to php_stream_cast() - would eventually bring a wrong result on x64. php_stream_cast() casts to int internally, and this will leave - the higher bits of a SOCKET variable uninitialized on systems with little endian. */ php_socket_t this_fd; php_stream_from_zval_no_verify(stream, elem);