msi: Improve detection of installed local assemblies.

This commit is contained in:
Hans Leidekker 2011-01-11 10:29:06 +01:00 committed by Alexandre Julliard
parent 6a0801a40a
commit 52f719d18c
1 changed files with 2 additions and 1 deletions

View File

@ -268,7 +268,8 @@ static BOOL check_assembly_installed( MSIPACKAGE *package, MSIASSEMBLY *assembly
if (assembly->application)
{
/* FIXME: we should probably check the manifest file here */
FIXME("we should probably check the manifest file here\n");
if (msi_get_property_int( package->db, szInstalled, 0 )) return TRUE;
return FALSE;
}