msi: Avoid using an uninitialized value (clang).
This commit is contained in:
parent
4202b1419c
commit
7f199e81e1
|
@ -1514,7 +1514,7 @@ UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage)
|
||||||
si = MSI_GetSummaryInformationW( db->storage, 0 );
|
si = MSI_GetSummaryInformationW( db->storage, 0 );
|
||||||
if (!si)
|
if (!si)
|
||||||
{
|
{
|
||||||
WARN("failed to load summary info %u\n", r);
|
WARN("failed to load summary info\n");
|
||||||
msiobj_release( &package->hdr );
|
msiobj_release( &package->hdr );
|
||||||
return ERROR_INSTALL_PACKAGE_INVALID;
|
return ERROR_INSTALL_PACKAGE_INVALID;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue