16 Dec
2019
16 Dec
'19
8:11 a.m.
On 16-12-2019 15:05, Dmitry Timoshkov wrote:
Sven Baars <sven.wine(a)gmail.com> wrote:
+START_TEST(ldap) +{ + HRESULT hr; + + hr = CoInitialize(NULL); + ok(hr == S_OK, "got %#x\n", hr); + + test_LDAP(); +}
I think you forgot to call CoUninitialize here.
The process is going to terminate anyway, so it's a waste of time.
In that case, you might as well remove all *_Release calls from your tests...