PHP :: Bug #48307 :: stream_copy_to_stream() and sockets
| Bug #48307 | stream_copy_to_stream() and sockets | ||||
|---|---|---|---|---|---|
| Submitted: | 2009-05-16 20:19 UTC | Modified: | 2009-05-16 20:24 UTC | ||
| From: | lbarnaud@php.net | Assigned: | lbarnaud (profile) | ||
| Status: | Closed | Package: | Streams related | ||
| PHP Version: | 5 | OS: | |||
| Private report: | No | CVE-ID: | None | ||
[2009-05-16 20:19 UTC] lbarnaud@php.net
Description: ------------ stream_copy_to_stream() copies 0 bytes when $source is a socket Reproduce code: --------------- $sockets = stream_socket_pair(STREAM_PF_UNIX, STREAM_SOCK_STREAM, 0); fwrite($sockets[0], b"a"); stream_socket_shutdown($sockets[0], STREAM_SHUT_WR); var_dump(stream_copy_to_stream($sockets[1], STDOUT)); Expected result: ---------------- int(1) a Actual result: -------------- int(0)
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2009-05-16 20:24 UTC] lbarnaud@php.net