https://bugs.winehq.org/show_bug.cgi?id=45167
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- URL| |http://download.acronis.com | |/ADD12_trial_en-US.exe Keywords| |download, Installer Summary|Acronis Disk Director 12 |Acronis Disk Director 12 |installer fails: |installer fails: action |ITERATE_Actions Execution |L"_USRCUSTACT_MsiFltSrvInst |halted, action |all_fltsrv_component" |L"_USRCUSTACT_MsiFltSrvInst |returned 1603 (setupapi |all_fltsrv_component" |lasterror leakage) |returned 1603 (setupapi | |lasterror leakage) |
--- Comment #1 from Anastasius Focht focht@gmx.net --- Hello again,
filling additional fields.
Source:
https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/setupapi/install.c#l1...
--- snip --- 1067 BOOL WINAPI SetupInstallFromInfSectionW( HWND owner, HINF hinf, PCWSTR section, UINT flags, 1068 HKEY key_root, PCWSTR src_root, UINT copy_flags, 1069 PSP_FILE_CALLBACK_W callback, PVOID context, 1070 HDEVINFO devinfo, PSP_DEVINFO_DATA devinfo_data ) 1071 { 1072 BOOL ret; 1073 int i; 1074 1075 if (flags & SPINST_REGISTRY) 1076 { 1077 struct registry_callback_info info; 1078 1079 info.default_root = key_root; 1080 info.delete = FALSE; 1081 if (!iterate_section_fields( hinf, section, WinePreInstall, registry_callback, &info )) 1082 return FALSE; 1083 } 1084 if (flags & SPINST_FILES) ... 1180 if (flags & SPINST_PROFILEITEMS) 1181 { 1182 if (!iterate_section_fields( hinf, section, ProfileItems, profile_items_callback, NULL )) 1183 return FALSE; 1184 } 1185 if (flags & SPINST_COPYINF) 1186 { 1187 if (!iterate_section_fields( hinf, section, CopyINF, copy_inf_callback, NULL )) 1188 return FALSE; 1189 } 1190 1191 return TRUE; 1192 } --- snip ---
Regards