Fixed the initializing of the C runtime handles.

svn path=/trunk/; revision=3855
This commit is contained in:
Hartmut Birr 2002-12-09 20:06:24 +00:00
parent 1cd89b296e
commit 1fa5ceab79

View file

@ -1,4 +1,4 @@
/* $Id: process.c,v 1.2 2002/11/05 20:55:59 hbirr Exp $ */
/* $Id: process.c,v 1.3 2002/12/09 20:06:24 hbirr Exp $ */
#include <msvcrt/process.h>
#include <msvcrt/stdlib.h>
#include <msvcrt/string.h>
@ -241,9 +241,9 @@ do_spawn(int mode, const char* cmdname, const char* args, const char* envp)
*hFile = INVALID_HANDLE_VALUE;
*fmode = 0;
}
fmode++;
hFile++;
}
fmode++;
hFile++;
}
}