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
27f5470f
Commit
27f5470f
authored
Apr 28, 2024
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 30, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Install global assemblies after install custom actions and before commit custom actions.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=56609
parent
a27b9551
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
action.c
dlls/msi/action.c
+5
-5
No files found.
dlls/msi/action.c
View file @
27f5470f
...
@@ -5139,6 +5139,11 @@ static UINT ACTION_InstallFinalize(MSIPACKAGE *package)
...
@@ -5139,6 +5139,11 @@ static UINT ACTION_InstallFinalize(MSIPACKAGE *package)
MSIFILE
*
file
;
MSIFILE
*
file
;
MSIFILEPATCH
*
patch
;
MSIFILEPATCH
*
patch
;
/* first do the same as an InstallExecute */
rc
=
execute_script
(
package
,
SCRIPT_INSTALL
);
if
(
rc
!=
ERROR_SUCCESS
)
return
rc
;
/* install global assemblies */
/* install global assemblies */
LIST_FOR_EACH_ENTRY
(
file
,
&
package
->
files
,
MSIFILE
,
entry
)
LIST_FOR_EACH_ENTRY
(
file
,
&
package
->
files
,
MSIFILE
,
entry
)
{
{
...
@@ -5177,11 +5182,6 @@ static UINT ACTION_InstallFinalize(MSIPACKAGE *package)
...
@@ -5177,11 +5182,6 @@ 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 */
/* then handle commit actions */
rc
=
execute_script
(
package
,
SCRIPT_COMMIT
);
rc
=
execute_script
(
package
,
SCRIPT_COMMIT
);
if
(
rc
!=
ERROR_SUCCESS
)
if
(
rc
!=
ERROR_SUCCESS
)
...
...
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