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
350449fc
Commit
350449fc
authored
Apr 02, 2012
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 02, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Suspend the installation if an action sets MSIRUNMODE_REBOOTNOW.
parent
15ee85de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
action.c
dlls/msi/action.c
+6
-0
No files found.
dlls/msi/action.c
View file @
350449fc
...
...
@@ -536,6 +536,12 @@ static UINT ITERATE_Actions(MSIRECORD *row, LPVOID param)
if
(
rc
!=
ERROR_SUCCESS
)
ERR
(
"Execution halted, action %s returned %i
\n
"
,
debugstr_w
(
action
),
rc
);
if
(
package
->
need_reboot_now
)
{
TRACE
(
"action %s asked for immediate reboot, suspending installation
\n
"
,
debugstr_w
(
action
));
rc
=
ACTION_ForceReboot
(
package
);
}
return
rc
;
}
...
...
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