dmitry          Mon Nov 28 09:33:45 2005 EDT

  Modified files:              
    /php-src/ext/standard/tests/file    proc_open01.phpt 
  Log:
  Fixed bug #35393 (changing static protected members from outside the class, 
one more reference issue)
  
  
http://cvs.php.net/diff.php/php-src/ext/standard/tests/file/proc_open01.phpt?r1=1.3&r2=1.4&ty=u
Index: php-src/ext/standard/tests/file/proc_open01.phpt
diff -u php-src/ext/standard/tests/file/proc_open01.phpt:1.3 
php-src/ext/standard/tests/file/proc_open01.phpt:1.4
--- php-src/ext/standard/tests/file/proc_open01.phpt:1.3        Tue Jul 15 
13:28:41 2003
+++ php-src/ext/standard/tests/file/proc_open01.phpt    Mon Nov 28 09:33:44 2005
@@ -30,7 +30,9 @@
          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;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to