* win32-nat.c (win32_create_inferior): Restore code calling

CloseHandle on ProcessInformation structure.
This commit is contained in:
Pierre Muller 2008-01-14 08:01:15 +00:00
parent 0d6a2f58b8
commit c1766e7d3e
3 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2008-01-14 Pierre Muller <muller@ics.u-strasbg.fr>
* win32-nat.c (win32_create_inferior): Restore code calling
CloseHandle on ProcessInformation structure.
2008-01-13 Nick Hudson <nick.hudson@dsl.pipex.com>
* configure.ac: Check for void * as 3 argument of ptrace.

View File

@ -1880,6 +1880,9 @@ win32_create_inferior (char *exec_file, char *allargs, char **in_env,
error (_("Error creating process %s, (error %d)."),
exec_file, (unsigned) GetLastError ());
CloseHandle (pi.hThread);
CloseHandle (pi.hProcess);
if (useshell && shell[0] != '\0')
saw_create = -1;
else

View File

@ -1880,6 +1880,9 @@ win32_create_inferior (char *exec_file, char *allargs, char **in_env,
error (_("Error creating process %s, (error %d)."),
exec_file, (unsigned) GetLastError ());
CloseHandle (pi.hThread);
CloseHandle (pi.hProcess);
if (useshell && shell[0] != '\0')
saw_create = -1;
else