| ... | ... | @@ -463,7 +463,7 @@ pub const ChildProcess = struct.{ |
| 463 | 463 | var g_hChildStd_IN_Wr: ?windows.HANDLE = null; |
| 464 | 464 | switch (self.stdin_behavior) { |
| 465 | 465 | StdIo.Pipe => { |
| 466 | | try windowsMakePipeIn(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, saAttr); |
| 466 | try windowsMakePipeIn(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr); |
| 467 | 467 | }, |
| 468 | 468 | StdIo.Ignore => { |
| 469 | 469 | g_hChildStd_IN_Rd = nul_handle; |
| ... | ... | @@ -483,7 +483,7 @@ pub const ChildProcess = struct.{ |
| 483 | 483 | var g_hChildStd_OUT_Wr: ?windows.HANDLE = null; |
| 484 | 484 | switch (self.stdout_behavior) { |
| 485 | 485 | StdIo.Pipe => { |
| 486 | | try windowsMakePipeOut(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, saAttr); |
| 486 | try windowsMakePipeOut(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr); |
| 487 | 487 | }, |
| 488 | 488 | StdIo.Ignore => { |
| 489 | 489 | g_hChildStd_OUT_Wr = nul_handle; |
| ... | ... | @@ -503,7 +503,7 @@ pub const ChildProcess = struct.{ |
| 503 | 503 | var g_hChildStd_ERR_Wr: ?windows.HANDLE = null; |
| 504 | 504 | switch (self.stderr_behavior) { |
| 505 | 505 | StdIo.Pipe => { |
| 506 | | try windowsMakePipeOut(&g_hChildStd_ERR_Rd, &g_hChildStd_ERR_Wr, saAttr); |
| 506 | try windowsMakePipeOut(&g_hChildStd_ERR_Rd, &g_hChildStd_ERR_Wr, &saAttr); |
| 507 | 507 | }, |
| 508 | 508 | StdIo.Ignore => { |
| 509 | 509 | g_hChildStd_ERR_Wr = nul_handle; |