msi: Avoid using an uninitialized value (clang).

This commit is contained in:
Hans Leidekker 2011-07-07 09:22:07 +02:00 committed by Alexandre Julliard
parent 4202b1419c
commit 7f199e81e1
1 changed files with 1 additions and 1 deletions

View File

@ -1514,7 +1514,7 @@ UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage)
si = MSI_GetSummaryInformationW( db->storage, 0 );
if (!si)
{
WARN("failed to load summary info %u\n", r);
WARN("failed to load summary info\n");
msiobj_release( &package->hdr );
return ERROR_INSTALL_PACKAGE_INVALID;
}