From 791c84c9281dfd3780fe9408bb1ae63633377571 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 7 Jun 1999 16:16:35 +0000 Subject: [PATCH] Fixed initial process refcount. --- server/process.c | 1 - 1 file changed, 1 deletion(-) diff --git a/server/process.c b/server/process.c index 125b0897764..2a58d28e0ec 100644 --- a/server/process.c +++ b/server/process.c @@ -147,7 +147,6 @@ struct process *create_initial_process(void) GENERIC_READ | GENERIC_WRITE | SYNCHRONIZE, 1 ); process->info->hstderr = alloc_handle( process, process->console_out, GENERIC_READ | GENERIC_WRITE | SYNCHRONIZE, 1 ); - release_object( process ); } return process; } -- 2.11.4.GIT