Hans Leidekker : msi: Improve detection of installed local assemblies.

Alexandre Julliard julliard at winehq.org
Tue Jan 11 10:08:28 CST 2011


Module: wine
Branch: master
Commit: 52f719d18c51f23b1432721cd939092f9c80ad45
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=52f719d18c51f23b1432721cd939092f9c80ad45

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Tue Jan 11 10:29:06 2011 +0100

msi: Improve detection of installed local assemblies.

---

 dlls/msi/assembly.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/msi/assembly.c b/dlls/msi/assembly.c
index 1189f68..04d42b4 100644
--- a/dlls/msi/assembly.c
+++ b/dlls/msi/assembly.c
@@ -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;
     }
 




More information about the wine-cvs mailing list