Well, it still has issues, but at least it won't go killing off your X

server any more....


SVN revision: 1193
This commit is contained in:
Michael Jennings 1999-11-06 10:18:43 +00:00
parent 20ce6fb410
commit 86e423d2f7
1 changed files with 3 additions and 1 deletions

View File

@ -49,7 +49,9 @@ start_hack(void) {
static void
stop_hack(void) {
kill(hack_pid, SIGTERM);
if (hack_pid != -1) {
kill(hack_pid, SIGTERM);
}
hack_pid = -1;
}