Re: [PATCH v4 0/4] MR6835: wintrust: Implement support for CryptCATAdminAcquireContext2 and CryptCATAdminCalcHashFromFileHandle2
21 Nov
2024
21 Nov
'24
9:33 a.m.
Hans Leidekker (@hans) commented about dlls/wintrust/crypt.c:
+ ALG_ID alg; + const WCHAR *providerName; + DWORD providerType;
- TRACE("%p %s %lx\n", catAdmin, debugstr_guid(sys), dwFlags); + TRACE("%p %s %s %p %lx\n", catAdmin, debugstr_guid(sys), debugstr_w(algorithm), policy, dwFlags);
if (!catAdmin || dwFlags) { SetLastError(ERROR_INVALID_PARAMETER); return FALSE; } + + if (policy != NULL) { + FIXME("strong policy parameter is unimplemented\n"); + } Please put opening braces on a new line like in the rest of the file. Here you can omit the braces.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6835#note_88256
392
Age (days ago)
392
Last active (days ago)
0 comments
1 participants
participants (1)
-
Hans Leidekker (@hans)