File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ extension Configuration {
82
82
outputWriteFileDescriptor? . platformDescriptor ( ) ?? - 1 ,
83
83
outputReadFileDescriptor? . platformDescriptor ( ) ?? - 1 ,
84
84
errorWriteFileDescriptor? . platformDescriptor ( ) ?? - 1 ,
85
- errorWriteFileDescriptor ? . platformDescriptor ( ) ?? - 1 ,
85
+ errorReadFileDescriptor ? . platformDescriptor ( ) ?? - 1 ,
86
86
]
87
87
88
88
let workingDirectory : String = self . workingDirectory. string
Original file line number Diff line number Diff line change @@ -641,8 +641,8 @@ int _subprocess_fork_exec(
641
641
if (file_descriptors [3 ] >= 0 ) {
642
642
rc = close (file_descriptors [3 ]);
643
643
}
644
- if (file_descriptors [4 ] >= 0 ) {
645
- rc = close (file_descriptors [4 ]);
644
+ if (file_descriptors [5 ] >= 0 ) {
645
+ rc = close (file_descriptors [5 ]);
646
646
}
647
647
if (rc != 0 ) {
648
648
int error = errno ;
You can’t perform that action at this time.
0 commit comments