Commit bee29a6c authored by Kai Blin's avatar Kai Blin Committed by Alexandre Julliard

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

As Wine ignores SIGCHLD, waitpid() works on Linux only by accident. On FreeBSD it doesn't work.
parent 00040c48
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment