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
084d5ac2
Commit
084d5ac2
authored
Mar 17, 2020
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 17, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
webservices: Handle WS_XML_TEXT_TYPE_INT32 in text_to_uint64.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f735ffbf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
reader.c
dlls/webservices/reader.c
+7
-0
No files found.
dlls/webservices/reader.c
View file @
084d5ac2
...
...
@@ -5051,6 +5051,13 @@ static HRESULT text_to_uint64( const WS_XML_TEXT *text, UINT64 *val )
hr
=
str_to_uint64
(
text_utf8
->
value
.
bytes
,
text_utf8
->
value
.
length
,
MAX_UINT64
,
val
);
break
;
}
case
WS_XML_TEXT_TYPE_INT32
:
{
const
WS_XML_INT32_TEXT
*
text_int32
=
(
const
WS_XML_INT32_TEXT
*
)
text
;
*
val
=
text_int32
->
value
;
hr
=
S_OK
;
break
;
}
case
WS_XML_TEXT_TYPE_INT64
:
{
const
WS_XML_INT64_TEXT
*
text_int64
=
(
const
WS_XML_INT64_TEXT
*
)
text
;
...
...
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