| ... | @@ -463,7 +463,7 @@ pub const ChildProcess = struct.{ | ... | @@ -463,7 +463,7 @@ pub const ChildProcess = struct.{ |
| 463 | var g_hChildStd_IN_Wr: ?windows.HANDLE = null; | 463 | var g_hChildStd_IN_Wr: ?windows.HANDLE = null; |
| 464 | switch (self.stdin_behavior) { | 464 | switch (self.stdin_behavior) { |
| 465 | StdIo.Pipe => { | 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 | StdIo.Ignore => { | 468 | StdIo.Ignore => { |
| 469 | g_hChildStd_IN_Rd = nul_handle; | 469 | g_hChildStd_IN_Rd = nul_handle; |
| ... | @@ -483,7 +483,7 @@ pub const ChildProcess = struct.{ | ... | @@ -483,7 +483,7 @@ pub const ChildProcess = struct.{ |
| 483 | var g_hChildStd_OUT_Wr: ?windows.HANDLE = null; | 483 | var g_hChildStd_OUT_Wr: ?windows.HANDLE = null; |
| 484 | switch (self.stdout_behavior) { | 484 | switch (self.stdout_behavior) { |
| 485 | StdIo.Pipe => { | 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 | StdIo.Ignore => { | 488 | StdIo.Ignore => { |
| 489 | g_hChildStd_OUT_Wr = nul_handle; | 489 | g_hChildStd_OUT_Wr = nul_handle; |
| ... | @@ -503,7 +503,7 @@ pub const ChildProcess = struct.{ | ... | @@ -503,7 +503,7 @@ pub const ChildProcess = struct.{ |
| 503 | var g_hChildStd_ERR_Wr: ?windows.HANDLE = null; | 503 | var g_hChildStd_ERR_Wr: ?windows.HANDLE = null; |
| 504 | switch (self.stderr_behavior) { | 504 | switch (self.stderr_behavior) { |
| 505 | StdIo.Pipe => { | 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 | StdIo.Ignore => { | 508 | StdIo.Ignore => { |
| 509 | g_hChildStd_ERR_Wr = nul_handle; | 509 | g_hChildStd_ERR_Wr = nul_handle; |