On 16-12-2019 15:05, Dmitry Timoshkov wrote:
Sven Baars sven.wine@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...