msi: Check a return value (clang).
This commit is contained in:
parent
4a7371e32d
commit
53b5e7f319
|
@ -1130,6 +1130,12 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid,
|
||||||
RegCloseKey(sourcekey);
|
RegCloseKey(sourcekey);
|
||||||
return ERROR_FUNCTION_FAILED;
|
return ERROR_FUNCTION_FAILED;
|
||||||
}
|
}
|
||||||
|
if (rc != ERROR_SUCCESS)
|
||||||
|
{
|
||||||
|
ERR("can't open subkey %u\n", rc);
|
||||||
|
RegCloseKey(sourcekey);
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
postfix = (dwOptions & MSISOURCETYPE_NETWORK) ? szBackSlash : szForwardSlash;
|
postfix = (dwOptions & MSISOURCETYPE_NETWORK) ? szBackSlash : szForwardSlash;
|
||||||
if (szSource[lstrlenW(szSource) - 1] == *postfix)
|
if (szSource[lstrlenW(szSource) - 1] == *postfix)
|
||||||
|
|
Loading…
Reference in New Issue