8 Dec
2022
8 Dec
'22
11:16 a.m.
Rémi Bernon (@rbernon) commented about dlls/cryptowinrt/tests/crypto.c:
hr = IActivationFactory_QueryInterface( factory, &IID_IKeyCredentialManagerStatics, (void **)&credentials_statics ); ok( hr == S_OK, "got hr %#lx.\n", hr );
+ if (!load_combase_functions()) return; + + todo_wine + { + hr = IKeyCredentialManagerStatics_IsSupportedAsync( credentials_statics, &bool_async );
In this specific commit, your `IsSupportedAsync` is still stub, so the call returns E_NOTIMPL and a NULL bool_async pointer. This then quickly crashes on the next tests. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1714#note_19162