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