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

This commit is contained in:
James Hawkins 2008-02-26 01:51:41 -06:00 committed by Alexandre Julliard
parent 4d2cf7a44b
commit d62bd166dc
1 changed files with 0 additions and 10 deletions

View File

@ -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);
/*