Commit 7f199e81 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Avoid using an uninitialized value (clang).

parent 4202b141
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment