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
31b0d5fa
Commit
31b0d5fa
authored
Apr 21, 2017
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 21, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
webservices: Read message headers in read_envelope_start.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0ab53b3f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
msg.c
dlls/webservices/msg.c
+10
-1
No files found.
dlls/webservices/msg.c
View file @
31b0d5fa
...
...
@@ -758,12 +758,21 @@ static BOOL match_current_element( WS_XML_READER *reader, const WS_XML_STRING *l
static
HRESULT
read_envelope_start
(
WS_XML_READER
*
reader
)
{
static
const
WS_XML_STRING
envelope
=
{
8
,
(
BYTE
*
)
"Envelope"
},
body
=
{
4
,
(
BYTE
*
)
"Body"
};
static
const
WS_XML_STRING
header
=
{
6
,
(
BYTE
*
)
"Header"
};
HRESULT
hr
;
if
((
hr
=
WsReadNode
(
reader
,
NULL
))
!=
S_OK
)
return
hr
;
if
(
!
match_current_element
(
reader
,
&
envelope
))
return
WS_E_INVALID_FORMAT
;
/* FIXME: read headers */
if
((
hr
=
WsReadNode
(
reader
,
NULL
))
!=
S_OK
)
return
hr
;
if
(
match_current_element
(
reader
,
&
header
))
{
for
(;;)
{
/* FIXME: store headers */
if
((
hr
=
WsReadNode
(
reader
,
NULL
))
!=
S_OK
)
return
hr
;
if
(
match_current_element
(
reader
,
&
body
))
break
;
}
}
if
(
!
match_current_element
(
reader
,
&
body
))
return
WS_E_INVALID_FORMAT
;
return
WsReadNode
(
reader
,
NULL
);
}
...
...
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