Fossil

View Ticket
Login
2010-08-27
17:19 Fixed ticket [cf50ea4d69]: popen2 for windows have a typo plus 1 other change ... (artifact: b71557f447 user: drh)
17:19
Fix a typo in the popen2() implementation for windows. Ticket [cf50ea4d6914fb6d856988da7]. Also refinements on the ssh:// toward getting it working on windows. ... (check-in: d5c934e5df user: drh tags: trunk)
10:03 New ticket [cf50ea4d69] popen2 for windows have a typo. ... (artifact: b9e6e79642 user: anonymous)

Ticket Hash: cf50ea4d6914fb6d856988da72293098942da98e
Title: popen2 for windows have a typo
Status: Fixed Type: Code_Defect
Severity: Minor Priority:
Subsystem: Resolution: Fixed
Last Modified: 2010-08-27 17:19:23
15.60 years ago
Created: 2010-08-27 10:03:15
15.60 years ago
Version Found In: current trunk
Description:
File popen.c:line 120
  fd = _open_osfhandle(hStdoutWr, 0);
should be
  fd = _open_osfhandle(hStdinWr, 0);
I have tested it, it worked well.