blob: 3cf8bd39eb1e7db2bf31f6edab53624010003150 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
diff --git a/src/Process.cpp b/src/Process.cpp
--- a/src/Process.cpp
+++ b/src/Process.cpp
@@ -173,8 +173,6 @@
if (pid > 0) { // parent process
for (;;) {
if (out) {
- //
- out->clear();
char buf[512];
ssize_t len;
while ((len = read(pipefd[0], buf, sizeof(buf)-1)) > 0) {
|