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 @@ -640,8 +640,8 @@ int _subprocess_fork_exec(
640
640
if (file_descriptors [3 ] >= 0 ) {
641
641
rc = close (file_descriptors [3 ]);
642
642
}
643
- if (file_descriptors [4 ] >= 0 ) {
644
- rc = close (file_descriptors [4 ]);
643
+ if (file_descriptors [5 ] >= 0 ) {
644
+ rc = close (file_descriptors [5 ]);
645
645
}
646
646
if (rc != 0 ) {
647
647
int error = errno ;
You can’t perform that action at this time.
0 commit comments