Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
7f0ca9c2
Commit
7f0ca9c2
authored
Apr 05, 2024
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 09, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Install global assemblies before running deferred custom actions.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=56493
parent
738ec828
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
action.c
dlls/msi/action.c
+10
-10
No files found.
dlls/msi/action.c
View file @
7f0ca9c2
...
...
@@ -5139,16 +5139,6 @@ static UINT ACTION_InstallFinalize(MSIPACKAGE *package)
MSIFILE
*
file
;
MSIFILEPATCH
*
patch
;
/* first do the same as an InstallExecute */
rc
=
execute_script
(
package
,
SCRIPT_INSTALL
);
if
(
rc
!=
ERROR_SUCCESS
)
return
rc
;
/* then handle commit actions */
rc
=
execute_script
(
package
,
SCRIPT_COMMIT
);
if
(
rc
!=
ERROR_SUCCESS
)
return
rc
;
/* install global assemblies */
LIST_FOR_EACH_ENTRY
(
file
,
&
package
->
files
,
MSIFILE
,
entry
)
{
...
...
@@ -5187,6 +5177,16 @@ static UINT ACTION_InstallFinalize(MSIPACKAGE *package)
}
}
/* first do the same as an InstallExecute */
rc
=
execute_script
(
package
,
SCRIPT_INSTALL
);
if
(
rc
!=
ERROR_SUCCESS
)
return
rc
;
/* then handle commit actions */
rc
=
execute_script
(
package
,
SCRIPT_COMMIT
);
if
(
rc
!=
ERROR_SUCCESS
)
return
rc
;
if
(
is_full_uninstall
(
package
))
rc
=
ACTION_UnpublishProduct
(
package
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment