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
c69468dd
Commit
c69468dd
authored
Dec 18, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Fix possible NULL dereference.
parent
3afbee52
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
async.c
server/async.c
+2
-1
No files found.
server/async.c
View file @
c69468dd
...
@@ -213,7 +213,8 @@ struct async *create_async( struct thread *thread, struct async_queue *queue, co
...
@@ -213,7 +213,8 @@ struct async *create_async( struct thread *thread, struct async_queue *queue, co
async
->
data
=
*
data
;
async
->
data
=
*
data
;
async
->
timeout
=
NULL
;
async
->
timeout
=
NULL
;
async
->
queue
=
(
struct
async_queue
*
)
grab_object
(
queue
);
async
->
queue
=
(
struct
async_queue
*
)
grab_object
(
queue
);
fd_assign_completion
(
queue
->
fd
,
&
async
->
completion
,
&
async
->
comp_key
);
async
->
completion
=
NULL
;
if
(
queue
->
fd
)
fd_assign_completion
(
queue
->
fd
,
&
async
->
completion
,
&
async
->
comp_key
);
list_add_tail
(
&
queue
->
queue
,
&
async
->
queue_entry
);
list_add_tail
(
&
queue
->
queue
,
&
async
->
queue_entry
);
grab_object
(
async
);
grab_object
(
async
);
...
...
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