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
d809b4e2
Commit
d809b4e2
authored
Jun 23, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Jun 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Don't publish the product to an invalid location.
parent
ee8b4a01
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
10 deletions
+13
-10
action.c
dlls/msi/action.c
+0
-6
automation.c
dlls/msi/tests/automation.c
+7
-4
install.c
dlls/msi/tests/install.c
+6
-0
No files found.
dlls/msi/action.c
View file @
d809b4e2
...
...
@@ -3411,7 +3411,6 @@ static UINT ACTION_PublishProduct(MSIPACKAGE *package)
{
UINT
rc
;
LPWSTR
packname
;
HKEY
hkey
=
0
;
HKEY
hukey
=
0
;
HKEY
hudkey
=
0
;
HKEY
source
;
...
...
@@ -3442,10 +3441,6 @@ static UINT ACTION_PublishProduct(MSIPACKAGE *package)
}
else
{
rc
=
MSIREG_OpenProductsKey
(
package
->
ProductCode
,
&
hkey
,
TRUE
);
if
(
rc
!=
ERROR_SUCCESS
)
goto
end
;
rc
=
MSIREG_OpenUserProductsKey
(
package
->
ProductCode
,
&
hukey
,
TRUE
);
if
(
rc
!=
ERROR_SUCCESS
)
goto
end
;
...
...
@@ -3533,7 +3528,6 @@ static UINT ACTION_PublishProduct(MSIPACKAGE *package)
rc
=
msi_publish_icons
(
package
);
end:
RegCloseKey
(
hkey
);
RegCloseKey
(
hukey
);
RegCloseKey
(
hudkey
);
...
...
dlls/msi/tests/automation.c
View file @
d809b4e2
...
...
@@ -2009,9 +2009,12 @@ static void test_Installer_Products(BOOL bProductInstalled)
}
}
ok
(
bProductInstalled
==
bProductFound
,
"Product expected to %s installed but product code was %s
\n
"
,
bProductInstalled
?
"be"
:
"not be"
,
bProductFound
?
"found"
:
"not found"
);
if
(
bProductInstalled
)
todo_wine
{
ok
(
bProductInstalled
==
bProductFound
,
"Product expected to %s installed but product code was %s
\n
"
,
bProductInstalled
?
"be"
:
"not be"
,
bProductFound
?
"found"
:
"not found"
);
}
if
(
pEnum
)
{
...
...
@@ -2306,7 +2309,7 @@ static void test_Installer_InstallProduct(void)
RegCloseKey
(
hkey
);
res
=
RegDeleteKeyA
(
HKEY_LOCAL_MACHINE
,
"SOFTWARE
\\
Microsoft
\\
Windows
\\
CurrentVersion
\\
Installer
\\
Products
\\
05FA3C1F65B896A40AC00077F34EF203"
);
todo_wine
ok
(
res
==
ERROR_FILE_NOT_FOUND
,
"Expected ERROR_SUCCESS
, got %d
\n
"
,
res
);
ok
(
res
==
ERROR_FILE_NOT_FOUND
,
"Expected ERROR_FILE_NOT_FOUND
, got %d
\n
"
,
res
);
/* Delete installation files we installed */
delete_test_files
();
...
...
dlls/msi/tests/install.c
View file @
d809b4e2
...
...
@@ -2477,6 +2477,9 @@ static void test_publish_publishproduct(void)
"
\\
84A88FD7F6998CE40A22FB59F6B9C2BB"
;
static
const
CHAR
cuupgrades
[]
=
"Software
\\
Microsoft
\\
Installer
\\
UpgradeCodes"
"
\\
51AAE0C44620A5E4788506E91F249BD2"
;
static
const
CHAR
badprod
[]
=
"Software
\\
Microsoft
\\
Windows
\\
CurrentVersion"
"
\\
Installer
\\
Products"
"
\\
84A88FD7F6998CE40A22FB59F6B9C2BB"
;
get_user_sid
(
&
usersid
);
if
(
!
usersid
)
...
...
@@ -2500,6 +2503,9 @@ static void test_publish_publishproduct(void)
ok
(
delete_pf
(
"msitest
\\
maximus"
,
TRUE
),
"File not installed
\n
"
);
ok
(
delete_pf
(
"msitest"
,
FALSE
),
"File not installed
\n
"
);
res
=
RegOpenKeyA
(
HKEY_LOCAL_MACHINE
,
badprod
,
&
hkey
);
ok
(
res
==
ERROR_FILE_NOT_FOUND
,
"Expected ERROR_FILE_NOT_FOUND, got %d
\n
"
,
res
);
sprintf
(
keypath
,
prodpath
,
usersid
);
res
=
RegOpenKeyA
(
HKEY_LOCAL_MACHINE
,
keypath
,
&
hkey
);
ok
(
res
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
res
);
...
...
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