Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
759d76ae
Commit
759d76ae
authored
Dec 11, 2011
by
Adam Martinson
Committed by
Alexandre Julliard
Dec 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Properly set flags in NtCreateNamedPipe().
parent
8a00eb86
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
file.c
dlls/ntdll/file.c
+3
-3
No files found.
dlls/ntdll/file.c
View file @
759d76ae
...
...
@@ -2797,9 +2797,9 @@ NTSTATUS WINAPI NtCreateNamedPipeFile( PHANDLE handle, ULONG access,
req
->
options
=
options
;
req
->
sharing
=
sharing
;
req
->
flags
=
(
pipe_type
)
?
NAMED_PIPE_MESSAGE_STREAM_WRITE
:
0
|
(
read_mode
)
?
NAMED_PIPE_MESSAGE_STREAM_READ
:
0
|
(
completion_mode
)
?
NAMED_PIPE_NONBLOCKING_MODE
:
0
;
(
pipe_type
?
NAMED_PIPE_MESSAGE_STREAM_WRITE
:
0
)
|
(
read_mode
?
NAMED_PIPE_MESSAGE_STREAM_READ
:
0
)
|
(
completion_mode
?
NAMED_PIPE_NONBLOCKING_MODE
:
0
)
;
req
->
maxinstances
=
max_inst
;
req
->
outsize
=
outbound_quota
;
req
->
insize
=
inbound_quota
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment