diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 0f1877e82f..69e2b03711 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -2933,7 +2933,7 @@ static UINT ITERATE_RegisterTypeLibraries(MSIRECORD *row, LPVOID param) if (FAILED(hr)) { ERR("Failed to load type library: %08x\n", hr); - return ERROR_FUNCTION_FAILED; + return ERROR_INSTALL_FAILURE; } ITypeLib_Release(tlib); diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c index 83e7220bb5..de826c34e0 100644 --- a/dlls/msi/tests/install.c +++ b/dlls/msi/tests/install.c @@ -8090,7 +8090,7 @@ static void test_register_typelib(void) MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL); r = MsiInstallProductA(msifile, "REGISTER_TYPELIB=1"); - todo_wine ok(r == ERROR_INSTALL_FAILURE, "Expected ERROR_INSTALL_FAILURE, got %u\n", r); + ok(r == ERROR_INSTALL_FAILURE, "Expected ERROR_INSTALL_FAILURE, got %u\n", r); r = MsiInstallProductA(msifile, NULL); ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);