Don't bother checking S_OK here, it'll work in falling through.

This commit is contained in:
Ryan C. Gordon 2011-10-26 12:04:05 -04:00
parent 62babe19c4
commit 61d3a02eab

View file

@ -42,10 +42,11 @@ WIN_SetError(const char *prefix)
HRESULT
WIN_CoInitialize(void)
{
const HRESULT hr = CoInitialize(NULL);
/* S_FALSE means success, but someone else already initialized. */
/* You still need to call CoUninitialize in this case! */
const HRESULT hr = CoInitialize(NULL);
if ((hr == S_OK) || (hr == S_FALSE)) {
if (hr == S_FALSE) {
return S_OK;
}