From ca24819ecb995094ae9c9214cd2cefc3d1cc93ca Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Fri, 10 May 2013 17:12:22 +0200 Subject: [PATCH] Make sure CompositeStream is closed properly, refs #195 --- CompositeStream.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CompositeStream.php b/CompositeStream.php index 44511d2..d2502f6 100644 --- a/CompositeStream.php +++ b/CompositeStream.php @@ -76,7 +76,7 @@ public function end($data = null) public function close() { - $this->pipeSource = true; + $this->pipeSource = null; $this->readable->close(); $this->writable->close();