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 {
8282 outputWriteFileDescriptor? . platformDescriptor ( ) ?? - 1 ,
8383 outputReadFileDescriptor? . platformDescriptor ( ) ?? - 1 ,
8484 errorWriteFileDescriptor? . platformDescriptor ( ) ?? - 1 ,
85- errorWriteFileDescriptor ? . platformDescriptor ( ) ?? - 1 ,
85+ errorReadFileDescriptor ? . platformDescriptor ( ) ?? - 1 ,
8686 ]
8787
8888 let workingDirectory : String = self . workingDirectory. string
Original file line number Diff line number Diff line change @@ -640,8 +640,8 @@ int _subprocess_fork_exec(
640640 if (file_descriptors [3 ] >= 0 ) {
641641 rc = close (file_descriptors [3 ]);
642642 }
643- if (file_descriptors [4 ] >= 0 ) {
644- rc = close (file_descriptors [4 ]);
643+ if (file_descriptors [5 ] >= 0 ) {
644+ rc = close (file_descriptors [5 ]);
645645 }
646646 if (rc != 0 ) {
647647 int error = errno ;
You can’t perform that action at this time.
0 commit comments