* win32-nat.c (win32_create_inferior): Restore code calling
CloseHandle on ProcessInformation structure.
This commit is contained in:
parent
0d6a2f58b8
commit
c1766e7d3e
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user