Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
43890d88
Commit
43890d88
authored
Jun 07, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jun 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Don't set the client's server field before the server has
changed into a connected state, otherwise we could assert in pipe_client_destroy.
parent
5558652e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
named_pipe.c
server/named_pipe.c
+3
-3
No files found.
server/named_pipe.c
View file @
43890d88
...
...
@@ -637,7 +637,7 @@ static struct pipe_server *create_pipe_server( struct named_pipe *pipe, unsigned
return
server
;
}
static
struct
pipe_client
*
create_pipe_client
(
struct
pipe_server
*
server
,
unsigned
int
flags
)
static
struct
pipe_client
*
create_pipe_client
(
unsigned
int
flags
)
{
struct
pipe_client
*
client
;
...
...
@@ -646,7 +646,7 @@ static struct pipe_client *create_pipe_client( struct pipe_server *server, unsig
return
NULL
;
client
->
fd
=
NULL
;
client
->
server
=
server
;
client
->
server
=
NULL
;
client
->
flags
=
flags
;
return
client
;
...
...
@@ -762,7 +762,7 @@ DECL_HANDLER(open_named_pipe)
return
;
}
client
=
create_pipe_client
(
server
,
req
->
flags
);
client
=
create_pipe_client
(
req
->
flags
);
if
(
client
)
{
if
(
!
socketpair
(
PF_UNIX
,
SOCK_STREAM
,
0
,
fds
))
...
...
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