msi: Ignore CoInitialize failure in ACTION_CreateShortcuts.
This commit is contained in:
parent
bf1b965e96
commit
dd1ca6ca5e
|
@ -3387,16 +3387,12 @@ static UINT ACTION_CreateShortcuts(MSIPACKAGE *package)
|
|||
return ERROR_SUCCESS;
|
||||
|
||||
res = CoInitialize( NULL );
|
||||
if (FAILED (res))
|
||||
{
|
||||
ERR("CoInitialize failed\n");
|
||||
return ERROR_FUNCTION_FAILED;
|
||||
}
|
||||
|
||||
rc = MSI_IterateRecords(view, NULL, ITERATE_CreateShortcuts, package);
|
||||
msiobj_release(&view->hdr);
|
||||
|
||||
CoUninitialize();
|
||||
if (SUCCEEDED(res))
|
||||
CoUninitialize();
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
|
|
@ -6212,7 +6212,7 @@ static void test_shortcut(void)
|
|||
ok(SUCCEEDED(hr), "CoInitialize failed 0x%08x\n", hr);
|
||||
|
||||
r = MsiInstallProductA(msifile, NULL);
|
||||
todo_wine ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
|
||||
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
|
||||
|
||||
CoUninitialize();
|
||||
|
||||
|
|
Loading…
Reference in New Issue