summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-03-19 06:35:58 +0100
committerAnatol Belski <ab@php.net>2014-03-19 06:35:58 +0100
commitec1153062040aa79382fb47bdcb42d24c2ab08f6 (patch)
treeb905ec7bbc1f1aff7f0d91390dba675278bb0198
parent62f6c5853f87259de320c54d12f7fb213aee4e27 (diff)
downloadphp-git-ec1153062040aa79382fb47bdcb42d24c2ab08f6.tar.gz
remove obsolete comment
-rw-r--r--ext/standard/streamsfuncs.c3
1 files changed, 0 insertions, 3 deletions
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);