| author | |
| committer | |
| log | 6c64f079fa4a80949e0721e112a77a771239752d |
| tree | 03cc4f3741ab56a6b92546ebca8e0bfb19fcfaa0 |
| parent | d40f204ec05d5913046c17ae46bba3b14cdaf384 |
| signature |
1 files changed, 3 insertions(+), 1 deletions(-)
lib/std/child_process.zig+3-1| ... | ... | @@ -259,7 +259,9 @@ pub const ChildProcess = struct { |
| 259 | 259 | } |
| 260 | 260 | |
| 261 | 261 | fn handleWaitResult(self: *ChildProcess, status: u32) void { |
| 262 | self.term = self.cleanupAfterWait(status); | |
| 262 | // TODO https://github.com/ziglang/zig/issues/3190 | |
| 263 | var term = self.cleanupAfterWait(status); | |
| 264 | self.term = term; | |
| 263 | 265 | } |
| 264 | 266 | |
| 265 | 267 | fn cleanupStreams(self: *ChildProcess) void { |