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
9e8e5204
Commit
9e8e5204
authored
Mar 21, 2019
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Mar 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32/tests: Accept failure code from recent win10.
Signed-off-by:
Detlef Riekenberg
<
wine.dev@web.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e079edf8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
registry.c
dlls/advapi32/tests/registry.c
+2
-1
No files found.
dlls/advapi32/tests/registry.c
View file @
9e8e5204
...
...
@@ -1951,7 +1951,8 @@ static void test_reg_query_info(void)
memset
(
classbufferW
,
0x55
,
sizeof
(
classbufferW
));
classlen
=
1
;
ret
=
RegQueryInfoKeyW
(
subkey
,
classbufferW
,
&
classlen
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
);
ok
(
ret
==
ERROR_INSUFFICIENT_BUFFER
,
"ret = %d
\n
"
,
ret
);
/* failure-code changed to ERROR_MORE_DATA in recent win10 */
ok
((
ret
==
ERROR_INSUFFICIENT_BUFFER
)
||
(
ret
==
ERROR_MORE_DATA
),
"ret = %d
\n
"
,
ret
);
ok
(
classlen
==
0
/* win8 */
||
classlen
==
strlen
(
subkey_class
),
"classlen = %u
\n
"
,
classlen
);
memset
(
expectbufferW
,
0x55
,
sizeof
(
expectbufferW
));
...
...
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