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
50040395
Commit
50040395
authored
Sep 18, 2008
by
Juan Lang
Committed by
Alexandre Julliard
Sep 19, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: Add traces to a few more functions.
parent
4e7a0763
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
wintrust_main.c
dlls/wintrust/wintrust_main.c
+7
-0
No files found.
dlls/wintrust/wintrust_main.c
View file @
50040395
...
...
@@ -607,6 +607,8 @@ BOOL WINAPI WINTRUST_AddStore(CRYPT_PROVIDER_DATA *data, HCERTSTORE store)
{
BOOL
ret
=
FALSE
;
TRACE
(
"(%p, %p)
\n
"
,
data
,
store
);
if
(
data
->
chStores
)
data
->
pahStores
=
WINTRUST_ReAlloc
(
data
->
pahStores
,
(
data
->
chStores
+
1
)
*
sizeof
(
HCERTSTORE
));
...
...
@@ -630,6 +632,8 @@ BOOL WINAPI WINTRUST_AddSgnr(CRYPT_PROVIDER_DATA *data,
{
BOOL
ret
=
FALSE
;
TRACE
(
"(%p, %d, %d, %p)
\n
"
,
data
,
fCounterSigner
,
idxSigner
,
sgnr
);
if
(
sgnr
->
cbStruct
>
sizeof
(
CRYPT_PROVIDER_SGNR
))
{
SetLastError
(
ERROR_INVALID_PARAMETER
);
...
...
@@ -681,6 +685,9 @@ BOOL WINAPI WINTRUST_AddCert(CRYPT_PROVIDER_DATA *data, DWORD idxSigner,
{
BOOL
ret
=
FALSE
;
TRACE
(
"(%p, %d, %d, %d, %p)
\n
"
,
data
,
idxSigner
,
fCounterSigner
,
idxSigner
,
pCert2Add
);
if
(
fCounterSigner
)
{
FIXME
(
"unimplemented for counter signers
\n
"
);
...
...
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