Spawn.vala
authorAlan Knowles <alan@roojs.com>
Mon, 29 Aug 2016 09:34:20 +0000 (17:34 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 29 Aug 2016 09:34:20 +0000 (17:34 +0800)
Spawn.vala

index 2c13854..20eb0ca 100644 (file)
@@ -294,13 +294,15 @@ public class Spawn : Object
         this.out_src = (int) this.out_ch.add_watch (
             IOCondition.OUT | IOCondition.IN  | IOCondition.PRI |  IOCondition.HUP |  IOCondition.ERR  ,
             (channel, condition) => {
-                return this.out_ch != null ? this.read(this.out_ch) : true;
+                return this.read(channel);
+                //return this.out_ch != null ? this.read(this.out_ch) : true;
             }
         );
         this.err_src = (int) this.err_ch.add_watch (
                 IOCondition.OUT | IOCondition.IN  | IOCondition.PRI |  IOCondition.HUP |  IOCondition.ERR  ,
             (channel, condition) => {
-               return this.err_ch != null ? this.read(this.err_ch)  : true;
+               return this.read(channel);
+               //return this.err_ch != null ? this.read(this.err_ch)  : true;
             }
         );