server: Fix possible leak of root object in create_named_pipe handler.

Signed-off-by: Sebastian Lackner <sebastian@fds-team.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Sebastian Lackner 2016-04-26 03:34:58 +02:00 committed by Alexandre Julliard
parent 240d8ed7e9
commit 20651c7dfe
1 changed files with 1 additions and 0 deletions

View File

@ -901,6 +901,7 @@ DECL_HANDLER(create_named_pipe)
if (!req->sharing || (req->sharing & ~(FILE_SHARE_READ | FILE_SHARE_WRITE)) ||
(!(req->flags & NAMED_PIPE_MESSAGE_STREAM_WRITE) && (req->flags & NAMED_PIPE_MESSAGE_STREAM_READ)))
{
if (root) release_object( root );
set_error( STATUS_INVALID_PARAMETER );
return;
}