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
7dc459f3
Commit
7dc459f3
authored
Apr 06, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Apr 08, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Avoid crashing while tracing parameters to NtCreateNamedPipeFile().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5811cac5
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 @
7dc459f3
...
...
@@ -3481,13 +3481,13 @@ NTSTATUS WINAPI NtCreateNamedPipeFile( PHANDLE handle, ULONG access,
data_size_t
len
;
struct
object_attributes
*
objattr
;
if
(
!
attr
)
return
STATUS_INVALID_PARAMETER
;
TRACE
(
"(%p %x %s %p %x %d %x %d %d %d %d %d %d %p)
\n
"
,
handle
,
access
,
debugstr_
w
(
attr
->
ObjectName
->
Buffer
),
iosb
,
sharing
,
dispo
,
handle
,
access
,
debugstr_
us
(
attr
->
ObjectName
),
iosb
,
sharing
,
dispo
,
options
,
pipe_type
,
read_mode
,
completion_mode
,
max_inst
,
inbound_quota
,
outbound_quota
,
timeout
);
if
(
!
attr
)
return
STATUS_INVALID_PARAMETER
;
/* assume we only get relative timeout */
if
(
timeout
->
QuadPart
>
0
)
FIXME
(
"Wrong time %s
\n
"
,
wine_dbgstr_longlong
(
timeout
->
QuadPart
));
...
...
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