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
b781a00b
Commit
b781a00b
authored
Apr 30, 2019
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 30, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Support SL_INVOKE_ON_CANCEL in IoCompleteRequest.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
332035fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+2
-1
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
b781a00b
...
...
@@ -2218,13 +2218,14 @@ VOID WINAPI IoCompleteRequest( IRP *irp, UCHAR priority_boost )
irpsp
=
irp
->
Tail
.
Overlay
.
s
.
u2
.
CurrentStackLocation
;
routine
=
irpsp
->
CompletionRoutine
;
call_flag
=
0
;
/* FIXME: add SL_INVOKE_ON_CANCEL support */
if
(
routine
)
{
if
((
irpsp
->
Control
&
SL_INVOKE_ON_SUCCESS
)
&&
STATUS_SUCCESS
==
status
)
call_flag
=
1
;
if
((
irpsp
->
Control
&
SL_INVOKE_ON_ERROR
)
&&
STATUS_SUCCESS
!=
status
)
call_flag
=
1
;
if
((
irpsp
->
Control
&
SL_INVOKE_ON_CANCEL
)
&&
irp
->
Cancel
)
call_flag
=
1
;
}
++
irp
->
CurrentLocation
;
++
irp
->
Tail
.
Overlay
.
s
.
u2
.
CurrentStackLocation
;
...
...
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