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
dc5421f9
Commit
dc5421f9
authored
May 28, 2019
by
Jacek Caban
Committed by
Alexandre Julliard
May 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Remove IRP from device queue before terminating async.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
101da2b5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
device.c
server/device.c
+3
-2
No files found.
server/device.c
View file @
dc5421f9
...
...
@@ -378,6 +378,9 @@ static void set_irp_result( struct irp_call *irp, unsigned int status,
iosb
->
out_size
=
min
(
iosb
->
out_size
,
out_size
);
if
(
iosb
->
out_size
&&
!
(
iosb
->
out_data
=
memdup
(
out_data
,
iosb
->
out_size
)))
iosb
->
out_size
=
0
;
/* remove it from the device queue */
list_remove
(
&
irp
->
dev_entry
);
irp
->
file
=
NULL
;
if
(
irp
->
async
)
{
...
...
@@ -388,8 +391,6 @@ static void set_irp_result( struct irp_call *irp, unsigned int status,
}
wake_up
(
&
irp
->
obj
,
0
);
/* remove it from the device queue */
list_remove
(
&
irp
->
dev_entry
);
release_object
(
irp
);
/* no longer on the device queue */
release_object
(
file
);
}
...
...
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