ID: 44667
Updated by: [EMAIL PROTECTED]
Reported By: mike at silverorange dot com
-Status: Open
+Status: Assigned
Bug Type: Program Execution
Operating System: Irrelevant
PHP Version: 5.2CVS-2008-04-08 (CVS)
-Assigned To:
+Assigned To: jani
New Comment:
Fixed, need to merge around.
Previous Comments:
------------------------------------------------------------------------
[2008-04-08 03:21:59] mike at silverorange dot com
Description:
------------
proc_open.c checks if the mode parameter != "w" instead of checking the
first character of the mode parameter. This prevents the mode 'wb' from
working properly.
Reproduce code:
---------------
<?php
$pipes = array();
$descriptor_spec = array(
0 => array('pipe', 'rb'),
1 => array('pipe', 'wb'),
);
$proc = proc_open('cat', $descriptor_spec, $pipes);
fwrite($pipes[0], 'Hello', 5);
fflush($pipes[0]);
fclose($pipes[0]);
$result = fread($pipes[1], 5);
fclose($pipes[1]);
proc_close($proc);
echo "Result is: ", $result, "\n";
?>
Expected result:
----------------
Result is: Hello
Actual result:
--------------
on stderr:
cat: write error: Bad file descriptor
on stdout:
Result is:
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=44667&edit=1