diff options
| author | Dmitry Stogov <dmitry@php.net> | 2005-11-28 14:33:03 +0000 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@php.net> | 2005-11-28 14:33:03 +0000 |
| commit | 14594953d2de208530f9a6f56fbaf51fbaa9a16c (patch) | |
| tree | ac93758e77c5540a3b68d52cfb7c96d97a4f5300 /ext | |
| parent | da9abd8b73c7f87f1867919695e50443db581084 (diff) | |
| download | php-git-14594953d2de208530f9a6f56fbaf51fbaa9a16c.tar.gz | |
Fixed bug #35393 (changing static protected members from outside the class, one more reference issue)
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/standard/tests/file/proc_open01.phpt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/standard/tests/file/proc_open01.phpt b/ext/standard/tests/file/proc_open01.phpt index 39fc4e4cf6..c5b0ed971b 100644 --- a/ext/standard/tests/file/proc_open01.phpt +++ b/ext/standard/tests/file/proc_open01.phpt @@ -30,7 +30,9 @@ for ($left = strlen($test_string); $left > 0;) { break; } $read_fds = array($pipes[1]); - $retval = stream_select($read_fds, $write_fds = NULL, $exp_fds = NULL, 1); + $write_fds = NULL; + $exp_fds = NULL; + $retval = stream_select($read_fds, $write_fds, $exp_fds, 1); if ($retval === false) { print "select() failed\n"; break; |
