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
6d13e2fd
Commit
6d13e2fd
authored
Nov 16, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 16, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Components don't require a key path.
parent
7cd084d0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
action.c
dlls/msi/action.c
+1
-2
classes.c
dlls/msi/classes.c
+1
-2
No files found.
dlls/msi/action.c
View file @
6d13e2fd
...
...
@@ -3245,8 +3245,7 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
'>'
,
'='
,
' '
,
'%'
,
'i'
,
' '
,
'O'
,
'R'
,
'D'
,
'E'
,
'R'
,
' '
,
'B'
,
'Y'
,
' '
,
'`'
,
'D'
,
'i'
,
's'
,
'k'
,
'I'
,
'd'
,
'`'
,
0
};
file
=
get_loaded_file
(
package
,
comp
->
KeyPath
);
if
(
!
file
)
if
(
!
comp
->
KeyPath
||
!
(
file
=
get_loaded_file
(
package
,
comp
->
KeyPath
)))
continue
;
row
=
MSI_QueryGetRecord
(
package
->
db
,
query
,
file
->
Sequence
);
...
...
dlls/msi/classes.c
View file @
6d13e2fd
...
...
@@ -850,8 +850,7 @@ UINT ACTION_RegisterClassInfo(MSIPACKAGE *package)
}
feature
->
Action
=
feature
->
ActionRequest
;
file
=
get_loaded_file
(
package
,
comp
->
KeyPath
);
if
(
!
file
)
if
(
!
comp
->
KeyPath
||
!
(
file
=
get_loaded_file
(
package
,
comp
->
KeyPath
)))
{
TRACE
(
"COM server not provided, skipping class %s
\n
"
,
debugstr_w
(
cls
->
clsid
));
continue
;
...
...
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