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