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
f21225a4
Commit
f21225a4
authored
Feb 13, 2014
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Feb 13, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fix typo in a field name.
parent
8f07fbcd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
action.c
dlls/msi/action.c
+3
-3
msipriv.h
dlls/msi/msipriv.h
+1
-1
No files found.
dlls/msi/action.c
View file @
f21225a4
...
...
@@ -1887,7 +1887,7 @@ UINT MSI_SetFeatureStates(MSIPACKAGE *package)
component
->
anyAbsent
=
1
;
break
;
case
INSTALLSTATE_ADVERTISED
:
component
->
hasAdvertiseFeature
=
1
;
component
->
hasAdvertise
d
Feature
=
1
;
break
;
case
INSTALLSTATE_SOURCE
:
component
->
hasSourceFeature
=
1
;
...
...
@@ -1897,7 +1897,7 @@ UINT MSI_SetFeatureStates(MSIPACKAGE *package)
break
;
case
INSTALLSTATE_DEFAULT
:
if
(
feature
->
Attributes
&
msidbFeatureAttributesFavorAdvertise
)
component
->
hasAdvertiseFeature
=
1
;
component
->
hasAdvertise
d
Feature
=
1
;
else
if
(
feature
->
Attributes
&
msidbFeatureAttributesFavorSource
)
component
->
hasSourceFeature
=
1
;
else
...
...
@@ -1942,7 +1942,7 @@ UINT MSI_SetFeatureStates(MSIPACKAGE *package)
component
->
ActionRequest
=
INSTALLSTATE_SOURCE
;
continue
;
}
if
(
component
->
hasAdvertiseFeature
)
if
(
component
->
hasAdvertise
d
Feature
)
{
component
->
Action
=
INSTALLSTATE_ADVERTISED
;
component
->
ActionRequest
=
INSTALLSTATE_ADVERTISED
;
...
...
dlls/msi/msipriv.h
View file @
f21225a4
...
...
@@ -487,7 +487,7 @@ typedef struct tagMSICOMPONENT
int
num_clients
;
unsigned
int
anyAbsent
:
1
;
unsigned
int
hasAdvertiseFeature
:
1
;
unsigned
int
hasAdvertise
d
Feature
:
1
;
unsigned
int
hasLocalFeature
:
1
;
unsigned
int
hasSourceFeature
:
1
;
}
MSICOMPONENT
;
...
...
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