msi: Load folders first.

This commit is contained in:
James Hawkins 2008-06-10 17:33:29 -05:00 committed by Alexandre Julliard
parent e4ff8a0c0a
commit dbbd5ca736
1 changed files with 1 additions and 1 deletions

View File

@ -1601,10 +1601,10 @@ static UINT ACTION_CostInitialize(MSIPACKAGE *package)
MSI_SetPropertyW(package, szCosting, szZero);
MSI_SetPropertyW(package, cszRootDrive, c_colon);
load_all_folders( package );
load_all_components( package );
load_all_features( package );
load_all_files( package );
load_all_folders( package );
return ERROR_SUCCESS;
}