* dtable.cc (set_std_handle): Call SetStdHandle with NULL if fd is closed.

(dtable::release): "Close" standard handle if appropriate.
* dcrt0.cc (dll_crt0_0): Fix minor switch formatting problem.
* fork.cc (frok::parent): Make minor comment indentation change.
This commit is contained in:
Christopher Faylor
2012-03-20 23:13:40 +00:00
parent c1c62a1368
commit 30fa154939
4 changed files with 25 additions and 14 deletions

View File

@ -354,14 +354,14 @@ frok::parent (volatile char * volatile stack_here)
while (1)
{
hchild = NULL;
rc = CreateProcessW (myself->progname, /* image to run */
myself->progname, /* what we send in arg0 */
rc = CreateProcessW (myself->progname, /* image to run */
myself->progname, /* what we send in arg0 */
&sec_none_nih,
&sec_none_nih,
TRUE, /* inherit handles from parent */
TRUE, /* inherit handles from parent */
c_flags,
NULL, /* environment filled in later */
0, /* use current drive/directory */
NULL, /* environment filled in later */
0, /* use current drive/directory */
&si,
&pi);