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
ece08c10
Commit
ece08c10
authored
Jun 16, 2015
by
Sebastian Lackner
Committed by
Alexandre Julliard
Jun 19, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Delay destruction of file object in set_irp_result.
parent
b4592cbc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
device.c
server/device.c
+1
-1
No files found.
server/device.c
View file @
ece08c10
...
...
@@ -288,7 +288,6 @@ static void set_irp_result( struct irp_call *irp, unsigned int status,
irp
->
out_size
=
min
(
irp
->
out_size
,
out_size
);
if
(
irp
->
out_size
&&
!
(
irp
->
out_data
=
memdup
(
out_data
,
irp
->
out_size
)))
irp
->
out_size
=
0
;
release_object
(
file
);
irp
->
file
=
NULL
;
if
(
irp
->
async
)
{
...
...
@@ -306,6 +305,7 @@ static void set_irp_result( struct irp_call *irp, unsigned int status,
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