Always call TerminateProcess when exiting a session.

svn path=/trunk/; revision=39460
This commit is contained in:
Steven Edwards 2009-02-07 17:39:51 +00:00
parent 2ea5d3e069
commit df4a100ba2

View file

@ -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 */