From 11750af32961f69da96cc04712f71cb4fc285383 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 20 Dec 2007 16:43:31 +0100 Subject: [PATCH] server: Don't give out full access to the system process event. --- server/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/process.c b/server/process.c index 23a4ec0707a..a78eac4d865 100644 --- a/server/process.c +++ b/server/process.c @@ -1185,7 +1185,7 @@ DECL_HANDLER(make_process_system) make_object_static( (struct object *)user_process_event ); } - if (!(reply->event = alloc_handle( current->process, user_process_event, EVENT_ALL_ACCESS, 0 ))) + if (!(reply->event = alloc_handle( current->process, user_process_event, SYNCHRONIZE, 0 ))) return; if (!process->is_system)