Commit df066eab authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

server: Do not cancel process sigkill in kill_process().

parent 2c94b7a6
......@@ -945,13 +945,7 @@ void kill_process( struct process *process, int violent_death )
process->msg_fd = NULL;
}
if (process->sigkill_timeout) /* already waiting for it to die */
{
remove_timeout_user( process->sigkill_timeout );
process->sigkill_timeout = NULL;
process_died( process );
return;
}
if (process->sigkill_timeout) return; /* already waiting for it to die */
if (violent_death) terminate_process( process, NULL, 1 );
else
......
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