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
6643f07d
Commit
6643f07d
authored
Oct 03, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Oct 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Don't try to copy back data in buffered mode when we don't expect…
ntoskrnl.exe: Don't try to copy back data in buffered mode when we don't expect any in process_ioctl.
parent
ea943293
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+1
-1
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
6643f07d
...
...
@@ -197,7 +197,7 @@ static NTSTATUS process_ioctl( DEVICE_OBJECT *device, ULONG code, void *in_buff,
*
out_size
=
(
irp
.
IoStatus
.
u
.
Status
>=
0
)
?
irp
.
IoStatus
.
Information
:
0
;
if
((
code
&
3
)
==
METHOD_BUFFERED
)
{
memcpy
(
out_buff
,
irp
.
AssociatedIrp
.
SystemBuffer
,
*
out_size
);
if
(
out_buff
)
memcpy
(
out_buff
,
irp
.
AssociatedIrp
.
SystemBuffer
,
*
out_size
);
HeapFree
(
GetProcessHeap
(),
0
,
irp
.
AssociatedIrp
.
SystemBuffer
);
}
return
irp
.
IoStatus
.
u
.
Status
;
...
...
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