ntdll: Remove superflous NULL checks.

oldstable
Marcus Meissner 2007-04-08 18:11:47 +02:00 committed by Alexandre Julliard
parent a6ecf0a7a5
commit 6c2e14e5b0
1 changed files with 2 additions and 2 deletions

View File

@ -2119,8 +2119,8 @@ NTSTATUS WINAPI NtCreateNamedPipeFile( PHANDLE handle, ULONG access,
SERVER_START_REQ( create_named_pipe )
{
req->access = access;
req->attributes = (attr) ? attr->Attributes : 0;
req->rootdir = attr ? attr->RootDirectory : 0;
req->attributes = attr->Attributes;
req->rootdir = attr->RootDirectory;
req->options = options;
req->flags =
(pipe_type) ? NAMED_PIPE_MESSAGE_STREAM_WRITE : 0 |