Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
1533cab3
Commit
1533cab3
authored
Sep 03, 2020
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit 10.0.3 upon wine-1.3.9
parent
295a590b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
action.c
dlls/msi/action.c
+1
-10
No files found.
dlls/msi/action.c
View file @
1533cab3
...
...
@@ -1754,8 +1754,7 @@ static void ACTION_GetComponentInstallStates(MSIPACKAGE *package)
LIST_FOR_EACH_ENTRY
(
comp
,
&
package
->
components
,
MSICOMPONENT
,
entry
)
{
if
(
!
comp
->
Enabled
||
!
comp
->
ComponentId
)
continue
;
if
(
!
comp
->
ComponentId
)
continue
;
if
(
state
!=
INSTALLSTATE_LOCAL
&&
state
!=
INSTALLSTATE_DEFAULT
)
comp
->
Installed
=
INSTALLSTATE_ABSENT
;
...
...
@@ -1949,8 +1948,6 @@ UINT MSI_SetFeatureStates(MSIPACKAGE *package)
/* features with components that have compressed files are made local */
LIST_FOR_EACH_ENTRY
(
cl
,
&
feature
->
Components
,
ComponentList
,
entry
)
{
if
(
!
cl
->
component
->
Enabled
)
continue
;
if
(
cl
->
component
->
ForceLocalState
&&
feature
->
ActionRequest
==
INSTALLSTATE_SOURCE
)
{
...
...
@@ -1963,8 +1960,6 @@ UINT MSI_SetFeatureStates(MSIPACKAGE *package)
{
component
=
cl
->
component
;
if
(
!
component
->
Enabled
)
continue
;
switch
(
feature
->
ActionRequest
)
{
case
INSTALLSTATE_ABSENT
:
...
...
@@ -1995,8 +1990,6 @@ UINT MSI_SetFeatureStates(MSIPACKAGE *package)
LIST_FOR_EACH_ENTRY
(
component
,
&
package
->
components
,
MSICOMPONENT
,
entry
)
{
if
(
!
component
->
Enabled
)
continue
;
/* check if it's local or source */
if
(
!
(
component
->
Attributes
&
msidbComponentAttributesOptional
)
&&
(
component
->
hasLocalFeature
||
component
->
hasSourceFeature
))
...
...
@@ -2035,8 +2028,6 @@ UINT MSI_SetFeatureStates(MSIPACKAGE *package)
LIST_FOR_EACH_ENTRY
(
component
,
&
package
->
components
,
MSICOMPONENT
,
entry
)
{
if
(
!
component
->
Enabled
)
continue
;
if
(
component
->
ActionRequest
==
INSTALLSTATE_DEFAULT
)
{
TRACE
(
"%s was default, setting to local
\n
"
,
debugstr_w
(
component
->
Component
));
...
...
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