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
a36d06c0
Commit
a36d06c0
authored
Jul 21, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 21, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: A component with an empty path is not used.
parent
dfb1f4f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
msi.c
dlls/msi/msi.c
+6
-3
No files found.
dlls/msi/msi.c
View file @
a36d06c0
...
...
@@ -986,6 +986,7 @@ INSTALLSTATE WINAPI MSI_GetComponentPath(LPCWSTR szProduct, LPCWSTR szComponent,
UINT
rc
;
HKEY
hkey
=
0
;
LPWSTR
path
=
NULL
;
INSTALLSTATE
r
;
TRACE
(
"%s %s %p %p
\n
"
,
debugstr_w
(
szProduct
),
debugstr_w
(
szComponent
),
lpPathBuf
->
str
.
w
,
pcchBuf
);
...
...
@@ -1018,13 +1019,15 @@ INSTALLSTATE WINAPI MSI_GetComponentPath(LPCWSTR szProduct, LPCWSTR szComponent,
if
(
!
path
)
return
INSTALLSTATE_UNKNOWN
;
if
(
path
[
0
]
==
'0'
)
FIXME
(
"Registry entry.. check entry
\n
"
);
if
(
path
[
0
])
r
=
INSTALLSTATE_LOCAL
;
else
r
=
INSTALLSTATE_NOTUSED
;
msi_strcpy_to_awstring
(
path
,
lpPathBuf
,
pcchBuf
);
msi_free
(
path
);
return
INSTALLSTATE_LOCAL
;
return
r
;
}
/******************************************************************
...
...
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