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
edb58a6d
Commit
edb58a6d
authored
Apr 19, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Apr 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fix a regression caused by some bad logic.
parent
1da2fbce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
classes.c
dlls/msi/classes.c
+3
-4
No files found.
dlls/msi/classes.c
View file @
edb58a6d
...
...
@@ -832,7 +832,6 @@ UINT ACTION_RegisterClassInfo(MSIPACKAGE *package)
static
const
WCHAR
szInprocServer32
[]
=
{
'I'
,
'n'
,
'p'
,
'r'
,
'o'
,
'c'
,
'S'
,
'e'
,
'r'
,
'v'
,
'e'
,
'r'
,
'3'
,
'2'
,
0
};
static
const
WCHAR
szFileType_fmt
[]
=
{
'F'
,
'i'
,
'l'
,
'e'
,
'T'
,
'y'
,
'p'
,
'e'
,
'\\'
,
'%'
,
's'
,
'\\'
,
'%'
,
'i'
,
0
};
HKEY
hkey
,
hkey2
,
hkey3
;
BOOL
install_on_demand
=
FALSE
;
MSICLASS
*
cls
;
load_classes_and_such
(
package
);
...
...
@@ -863,9 +862,9 @@ UINT ACTION_RegisterClassInfo(MSIPACKAGE *package)
* yes. MSDN says that these are based on _Feature_ not on
* Component. So verify the feature is to be installed
*/
if
(
!
ACTION_VerifyFeatureForAction
(
feature
,
INSTALLSTATE_LOCAL
)
||
!
(
install_on_demand
&&
ACTION_VerifyFeatureForAction
(
feature
,
INSTALLSTATE_ADVERTISED
)))
if
(
!
ACTION_VerifyFeatureForAction
(
feature
,
INSTALLSTATE_LOCAL
)
)
/* &&
!(install_on_demand &&
ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_ADVERTISED )))
*/
{
TRACE
(
"Skipping class %s reg due to disabled feature %s
\n
"
,
debugstr_w
(
cls
->
clsid
),
...
...
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