mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
Always call TerminateProcess when exiting a session.
svn path=/trunk/; revision=39460
This commit is contained in:
parent
2ea5d3e069
commit
df4a100ba2
1 changed files with 5 additions and 0 deletions
|
@ -11,6 +11,9 @@
|
|||
* Use freely, no copyrights.
|
||||
* Use Linux.
|
||||
*
|
||||
* Parts Copyright Steven Edwards
|
||||
* Public Domain
|
||||
*
|
||||
* TODO:
|
||||
* - access control
|
||||
* - will/won't handshake
|
||||
|
@ -615,7 +618,9 @@ static void TerminateShell(client_t *client)
|
|||
}
|
||||
TerminateProcess(client->hProcess, 0);
|
||||
}
|
||||
TerminateProcess(client->hProcess, 0);
|
||||
}
|
||||
TerminateProcess(client->hProcess, 0);
|
||||
}
|
||||
|
||||
/* ErrorExit */
|
||||
|
|
Loading…
Reference in a new issue