8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d694858 commit 2d586d2Copy full SHA for 2d586d2
src/Symfony/Component/Process/Process.php
@@ -213,14 +213,15 @@ public function start($callback = null)
213
214
if (null === $this->stdin) {
215
fclose($this->pipes[0]);
216
+ unset($this->pipes[0]);
217
218
return;
219
} else {
220
$writePipes = array($this->pipes[0]);
221
222
$stdinLen = strlen($this->stdin);
223
$stdinOffset = 0;
224
}
- unset($this->pipes[0]);
225
226
while ($writePipes) {
227
$r = $this->pipes;
0 commit comments