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
42e681e3
Commit
42e681e3
authored
Feb 10, 2014
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Feb 10, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xmllite/tests: Fix stack corruption in 64-bit builds.
parent
cdd932a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
reader.c
dlls/xmllite/tests/reader.c
+2
-2
No files found.
dlls/xmllite/tests/reader.c
View file @
42e681e3
...
...
@@ -233,12 +233,12 @@ static const char *type_to_str(XmlNodeType type)
static
void
test_read_state_
(
IXmlReader
*
reader
,
XmlReadState
expected
,
XmlReadState
exp_broken
,
BOOL
todo
,
int
line
)
{
XmlReadState
state
;
LONG_PTR
state
;
HRESULT
hr
;
BOOL
broken_state
;
state
=
-
1
;
/* invalid value */
hr
=
IXmlReader_GetProperty
(
reader
,
XmlReaderProperty_ReadState
,
(
LONG_PTR
*
)
&
state
);
hr
=
IXmlReader_GetProperty
(
reader
,
XmlReaderProperty_ReadState
,
&
state
);
ok_
(
__FILE__
,
line
)(
hr
==
S_OK
,
"Expected S_OK, got %08x
\n
"
,
hr
);
if
(
exp_broken
==
-
1
)
...
...
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