Commit 049dce7c authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Mask SIGCHLD to prevent partial writes in the new_process server

call.
parent 283267df
......@@ -826,6 +826,7 @@ void server_init_process(void)
sigaddset( &block_set, SIGHUP );
sigaddset( &block_set, SIGUSR1 );
sigaddset( &block_set, SIGUSR2 );
sigaddset( &block_set, SIGCHLD );
/* receive the first thread request fd on the main socket */
NtCurrentTeb()->request_fd = receive_fd( &dummy_handle );
......
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