Commit dbbd5ca7 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Load folders first.

parent e4ff8a0c
...@@ -1601,10 +1601,10 @@ static UINT ACTION_CostInitialize(MSIPACKAGE *package) ...@@ -1601,10 +1601,10 @@ static UINT ACTION_CostInitialize(MSIPACKAGE *package)
MSI_SetPropertyW(package, szCosting, szZero); MSI_SetPropertyW(package, szCosting, szZero);
MSI_SetPropertyW(package, cszRootDrive, c_colon); MSI_SetPropertyW(package, cszRootDrive, c_colon);
load_all_folders( package );
load_all_components( package ); load_all_components( package );
load_all_features( package ); load_all_features( package );
load_all_files( package ); load_all_files( package );
load_all_folders( package );
return ERROR_SUCCESS; return ERROR_SUCCESS;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment