secur32: Don't call waitpid() in dispatcher.

As Wine ignores SIGCHLD, waitpid() works on Linux only by accident. On
FreeBSD it doesn't work.
This commit is contained in:
Kai Blin 2008-05-01 21:40:27 +02:00 committed by Alexandre Julliard
parent 00040c4814
commit bee29a6c2e
1 changed files with 0 additions and 2 deletions

View File

@ -272,8 +272,6 @@ void cleanup_helper(PNegoHelper helper)
close(helper->pipe_out);
close(helper->pipe_in);
waitpid(helper->helper_pid, NULL, 0);
helper->helper_pid = 0;
HeapFree(GetProcessHeap(), 0, helper);
}