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
b40a406d
Commit
b40a406d
authored
Mar 15, 2006
by
Juan Lang
Committed by
Alexandre Julliard
Mar 16, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Tighten CertDuplicateCertificateContext test.
Test that the return from CertDuplicateCertificateContext is the same as its parameter.
parent
832dd3c7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
11 deletions
+5
-11
store.c
dlls/crypt32/tests/store.c
+5
-11
No files found.
dlls/crypt32/tests/store.c
View file @
b40a406d
...
...
@@ -143,17 +143,11 @@ static void testDupCert(void)
dupContext
=
CertDuplicateCertificateContext
(
context
);
ok
(
dupContext
!=
NULL
,
"Expected valid duplicate
\n
"
);
if
(
dupContext
)
{
ok
(
dupContext
->
cbCertEncoded
==
sizeof
(
bigCert
),
"Expected cert of %d bytes, got %ld
\n
"
,
sizeof
(
bigCert
),
dupContext
->
cbCertEncoded
);
ok
(
!
memcmp
(
dupContext
->
pbCertEncoded
,
bigCert
,
sizeof
(
bigCert
)),
"Unexpected encoded cert in context
\n
"
);
ok
(
dupContext
->
hCertStore
==
store
,
"Unexpected store
\n
"
);
CertFreeCertificateContext
(
dupContext
);
}
/* Not only is it a duplicate, it's identical: the address is the
* same.
*/
ok
(
dupContext
==
context
,
"Expected identical context addresses
\n
"
);
CertFreeCertificateContext
(
dupContext
);
CertFreeCertificateContext
(
context
);
}
CertCloseStore
(
store
,
0
);
...
...
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