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
a5f816c6
Commit
a5f816c6
authored
Feb 05, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do a protocol error instead of crashing if the reply fd has not been
set.
parent
ff49652e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
request.c
server/request.c
+8
-4
No files found.
server/request.c
View file @
a5f816c6
...
...
@@ -273,10 +273,14 @@ static void call_req_handler( struct thread *thread )
req_handlers
[
req
](
&
current
->
req
,
&
reply
);
if
(
current
)
{
reply
.
reply_header
.
error
=
current
->
error
;
reply
.
reply_header
.
reply_size
=
current
->
reply_size
;
if
(
debug_level
)
trace_reply
(
req
,
&
reply
);
send_reply
(
&
reply
);
if
(
current
->
reply_fd
)
{
reply
.
reply_header
.
error
=
current
->
error
;
reply
.
reply_header
.
reply_size
=
current
->
reply_size
;
if
(
debug_level
)
trace_reply
(
req
,
&
reply
);
send_reply
(
&
reply
);
}
else
fatal_protocol_error
(
current
,
"no reply fd for request %d
\n
"
,
req
);
}
current
=
NULL
;
return
;
...
...
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