Fossil SCM
popen2 for windows have a typo
Fixed
cf50ea4d6914fb6…
· opened 15 years, 7 months ago
- Type
- Code_Defect
- Priority
- —
- Severity
- Minor
- Resolution
- Fixed
- Subsystem
- —
- Created
- Aug. 27, 2010 10:03 a.m.
File popen.c:line 120
fd = _open_osfhandle(hStdoutWr, 0);
should be
fd = _open_osfhandle(hStdinWr, 0);
I have tested it, it worked well.