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
888a19c0
Commit
888a19c0
authored
Mar 09, 2011
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Build the key path from the display name if the component is an assembly.
parent
e292eb12
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
action.c
dlls/msi/action.c
+13
-1
No files found.
dlls/msi/action.c
View file @
888a19c0
...
...
@@ -3252,7 +3252,19 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
squash_guid
(
comp
->
ComponentId
,
squished_cc
);
msi_free
(
comp
->
FullKeypath
);
comp
->
FullKeypath
=
resolve_keypath
(
package
,
comp
);
if
(
comp
->
assembly
)
{
const
WCHAR
prefixW
[]
=
{
'<'
,
'\\'
,
0
};
DWORD
len
=
strlenW
(
prefixW
)
+
strlenW
(
comp
->
assembly
->
display_name
);
comp
->
FullKeypath
=
msi_alloc
(
(
len
+
1
)
*
sizeof
(
WCHAR
)
);
if
(
comp
->
FullKeypath
)
{
strcpyW
(
comp
->
FullKeypath
,
prefixW
);
strcatW
(
comp
->
FullKeypath
,
comp
->
assembly
->
display_name
);
}
}
else
comp
->
FullKeypath
=
resolve_keypath
(
package
,
comp
);
ACTION_RefCountComponent
(
package
,
comp
);
...
...
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