James Hawkins : msi: Remove setting a source list property that' s in the wrong place.

Alexandre Julliard julliard at winehq.org
Tue Feb 26 05:45:15 CST 2008


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

Author: James Hawkins <jhawkins at codeweavers.com>
Date:   Tue Feb 26 01:51:41 2008 -0600

msi: Remove setting a source list property that's in the wrong place.

---

 dlls/msi/files.c |   10 ----------
 1 files changed, 0 insertions(+), 10 deletions(-)

diff --git a/dlls/msi/files.c b/dlls/msi/files.c
index da92965..8ed2395 100644
--- a/dlls/msi/files.c
+++ b/dlls/msi/files.c
@@ -739,21 +739,11 @@ UINT ACTION_InstallFiles(MSIPACKAGE *package)
 {
     struct media_info *mi;
     UINT rc = ERROR_SUCCESS;
-    LPWSTR ptr;
     MSIFILE *file;
 
     /* increment progress bar each time action data is sent */
     ui_progress(package,1,1,0,0);
 
-    /* handle the keys for the SourceList */
-    ptr = strrchrW(package->PackagePath,'\\');
-    if (ptr)
-    {
-        ptr++;
-        msi_package_add_info(package, MSIINSTALLCONTEXT_USERMANAGED,
-                             MSICODE_PRODUCT, INSTALLPROPERTY_PACKAGENAMEW, ptr);
-    }
-
     schedule_install_files(package);
 
     /*




More information about the wine-cvs mailing list