Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
9e07f0de
Commit
9e07f0de
authored
Feb 11, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Feb 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: Don't fail if a registry value doesn't exist.
parent
2d2e718b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
register.c
dlls/wintrust/tests/register.c
+3
-3
No files found.
dlls/wintrust/tests/register.c
View file @
9e07f0de
...
...
@@ -332,9 +332,9 @@ static void test_RegPolicyFlags(void)
size
=
sizeof
(
flags1
);
r
=
RegQueryValueExA
(
key
,
State
,
NULL
,
NULL
,
(
LPBYTE
)
&
flags1
,
&
size
);
ok
(
!
r
,
"RegQueryValueEx failed: %d
\n
"
,
r
);
ok
(
flags1
==
flags2
,
"Got %08x flags instead of %08x
\n
"
,
flags1
,
flags2
);
ok
(
!
r
||
r
==
ERROR_FILE_NOT_FOUND
,
"RegQueryValueEx failed: %d
\n
"
,
r
);
if
(
r
)
ok
(
flags1
==
flags2
,
"Got %08x flags instead of %08x
\n
"
,
flags1
,
flags2
);
flags3
=
flags2
|
1
;
ret
=
pWintrustSetRegPolicyFlags
(
flags3
);
...
...
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